[FFmpeg-devel] [PATCH v20 07/10] avformat/mov_muxer: Extended MOV muxer to handle EVC video content

James Almer jamrial at gmail.com
Wed Apr 19 16:03:13 EEST 2023


On 4/18/2023 7:32 AM, Dawid Kozinski wrote:
> diff --git a/libavformat/isom_tags.c b/libavformat/isom_tags.c
> index 86c7272525..2a29823b2e 100644
> --- a/libavformat/isom_tags.c
> +++ b/libavformat/isom_tags.c
> @@ -147,6 +147,8 @@ const AVCodecTag ff_codec_movvideo_tags[] = {
>       { AV_CODEC_ID_H264, MKTAG('d', 'v', 'a', '1') }, /* AVC-based Dolby Vision derived from avc1 */
>       { AV_CODEC_ID_H264, MKTAG('d', 'v', 'a', 'v') }, /* AVC-based Dolby Vision derived from avc3 */
>   
> +    { AV_CODEC_ID_EVC,  MKTAG('e', 'v', 'c', '1') }, /* EVC/MPEG-5 */

Isn't MKTAG('e', 'v', 'c', 'i') missing after this one?

> +
>       { AV_CODEC_ID_VP8,  MKTAG('v', 'p', '0', '8') }, /* VP8 */
>       { AV_CODEC_ID_VP9,  MKTAG('v', 'p', '0', '9') }, /* VP9 */
>       { AV_CODEC_ID_AV1,  MKTAG('a', 'v', '0', '1') }, /* AV1 */


More information about the ffmpeg-devel mailing list