Skip to content
Extraits de code Groupes Projets
Vérifiée Valider d633e0fe rédigé par Kubat's avatar Kubat
Parcourir les fichiers

DOC: Small little updates to doc

parent f50f5665
Branches
Étiquettes
1 requête de fusion!16Add a way to execute a Lua file with Vivy in a click-click way
...@@ -54,6 +54,4 @@ Some of the feature may not be ...@@ -54,6 +54,4 @@ Some of the feature may not be
used or not already be in use for multiple reasons: used or not already be in use for multiple reasons:
- the new C++20 modules feature is not used because I don't know how it - the new C++20 modules feature is not used because I don't know how it
will play with `moc`. It's not supported by clangd for now anyway will play with `moc`. It's not supported by clangd for now anyway.
...@@ -136,7 +136,7 @@ enum class DocumentType : quint64 { ...@@ -136,7 +136,7 @@ enum class DocumentType : quint64 {
/* Meta-types */ /* Meta-types */
Audio = (WAVE | OGG | MP3 | M4A | OPUS | MP2 | AIFF | FLAC | ALAC), Audio = (WAVE | OGG | MP3 | M4A | OPUS | MP2 | AIFF | FLAC | ALAC),
Video = (MKV | MP4 | MOV | AVI | AV1 | M4V | FLV), Video = (MKV | MP4 | MOV | AVI | AV1 | M4V | FLV)
}; };
template <typename E> constexpr auto template <typename E> constexpr auto
...@@ -175,7 +175,7 @@ enum class AudioDocumentType : quint64 { ...@@ -175,7 +175,7 @@ enum class AudioDocumentType : quint64 {
MP2 = Utils::toUnderlying(Utils::DocumentType::MP2), MP2 = Utils::toUnderlying(Utils::DocumentType::MP2),
AIFF = Utils::toUnderlying(Utils::DocumentType::AIFF), AIFF = Utils::toUnderlying(Utils::DocumentType::AIFF),
FLAC = Utils::toUnderlying(Utils::DocumentType::FLAC), FLAC = Utils::toUnderlying(Utils::DocumentType::FLAC),
ALAC = Utils::toUnderlying(Utils::DocumentType::ALAC), ALAC = Utils::toUnderlying(Utils::DocumentType::ALAC)
}; };
// Video document types // Video document types
...@@ -186,13 +186,11 @@ enum class VideoDocumentType : quint64 { ...@@ -186,13 +186,11 @@ enum class VideoDocumentType : quint64 {
AVI = Utils::toUnderlying(Utils::DocumentType::AVI), AVI = Utils::toUnderlying(Utils::DocumentType::AVI),
AV1 = Utils::toUnderlying(Utils::DocumentType::AV1), AV1 = Utils::toUnderlying(Utils::DocumentType::AV1),
M4V = Utils::toUnderlying(Utils::DocumentType::M4V), M4V = Utils::toUnderlying(Utils::DocumentType::M4V),
FLV = Utils::toUnderlying(Utils::DocumentType::FLV), FLV = Utils::toUnderlying(Utils::DocumentType::FLV)
}; };
// Ass document types // Ass document types
enum class AssDocumentType : quint64 { enum class AssDocumentType : quint64 { ASS = Utils::toUnderlying(Utils::DocumentType::ASS) };
ASS = Utils::toUnderlying(Utils::DocumentType::ASS),
};
} }
class QMenu; class QMenu;
......
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Veuillez vous inscrire ou vous pour commenter