diff options
author | Dawid Kozinski <d.kozinski@samsung.com> | 2023-06-15 13:48:59 +0200 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2023-06-15 09:57:41 -0300 |
commit | 091705cd55afe08f0c85d673dc924856fef9ae6e (patch) | |
tree | 87b926f3bbec0a36579ec673db213e6c2fce8700 /libavformat/demux.c | |
parent | a04ca05f4c62b219f643cb769d839a6737cd5c84 (diff) | |
download | ffmpeg-091705cd55afe08f0c85d673dc924856fef9ae6e.tar.gz |
avformat/mov_demuxer: Extended MOV demuxer to handle EVC video content
- Added evc extension to the list of extensions for ff_mov_demuxer
Signed-off-by: Dawid Kozinski <d.kozinski@samsung.com>
Diffstat (limited to 'libavformat/demux.c')
-rw-r--r-- | libavformat/demux.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/demux.c b/libavformat/demux.c index b3f563ccc7..1b21b8440c 100644 --- a/libavformat/demux.c +++ b/libavformat/demux.c @@ -120,6 +120,7 @@ static int set_codec_from_probe_data(AVFormatContext *s, AVStream *st, { "mp3", AV_CODEC_ID_MP3, AVMEDIA_TYPE_AUDIO }, { "mpegvideo", AV_CODEC_ID_MPEG2VIDEO, AVMEDIA_TYPE_VIDEO }, { "truehd", AV_CODEC_ID_TRUEHD, AVMEDIA_TYPE_AUDIO }, + { "evc", AV_CODEC_ID_EVC, AVMEDIA_TYPE_VIDEO }, { 0 } }; int score; |