Add media format entry for H.266

This commit is contained in:
Martchus 2023-02-18 21:43:16 +01:00
parent 3272d9c511
commit 15d74bbfb0
2 changed files with 7 additions and 0 deletions

View File

@ -135,6 +135,8 @@ std::string_view MediaFormat::name() const
return "3GPP2 Compact Multimedia Format (CMF)";
case GeneralMediaFormat::Hevc:
return "High Efficiency Video Coding";
case GeneralMediaFormat::Vcc:
return "Versatile Video Coding";
case GeneralMediaFormat::ImaadpcmAcm:
return "IMAADPCM ACM";
case GeneralMediaFormat::ImageSubtitle:
@ -564,6 +566,8 @@ std::string_view MediaFormat::abbreviation() const
return "3GPP2 CMF";
case GeneralMediaFormat::Hevc:
return "H.265";
case GeneralMediaFormat::Vcc:
return "H.266";
case GeneralMediaFormat::ImaadpcmAcm:
return "IMAADPCM ACM";
case GeneralMediaFormat::ImageSubtitle:
@ -873,6 +877,8 @@ std::string_view MediaFormat::shortAbbreviation() const
return "3GPP2-CMF";
case GeneralMediaFormat::Hevc:
return "H.265";
case GeneralMediaFormat::Vcc:
return "H.266";
case GeneralMediaFormat::ImaadpcmAcm:
return "IMAADPCM-ACM";
case GeneralMediaFormat::ImageSubtitle:

View File

@ -99,6 +99,7 @@ enum class GeneralMediaFormat : unsigned int {
WavPack, /**< WavPack */
WindowsMediaAudio, /**< Windows Media Audio */
WindowsMediaVideo, /**< Windows Media Video */
Vcc, /**< H.266/Versatile Video Coding */
};
/*!