diff options
author | Dawid Kozinski <d.kozinski@samsung.com> | 2023-06-15 13:47:26 +0200 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2023-06-15 09:57:35 -0300 |
commit | ab2671c5f2396864fa8da2ebae0b2a5aa942167f (patch) | |
tree | 4a29ea2ff95c171430aa79a5d139d8eb64d14f55 /libavformat/allformats.c | |
parent | 3069a8fe3cc7159dceec29130deb101edf99b456 (diff) | |
download | ffmpeg-ab2671c5f2396864fa8da2ebae0b2a5aa942167f.tar.gz |
avformat/evc_demuxer: Added demuxer to handle reading EVC video files
- Provided AVInputFormat struct describing EVC input format (ff_evc_demuxer)
Signed-off-by: Dawid Kozinski <d.kozinski@samsung.com>
Diffstat (limited to 'libavformat/allformats.c')
-rw-r--r-- | libavformat/allformats.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/allformats.c b/libavformat/allformats.c index d3871de268..ae604236ae 100644 --- a/libavformat/allformats.c +++ b/libavformat/allformats.c @@ -154,6 +154,7 @@ extern const AVInputFormat ff_ea_cdata_demuxer; extern const AVInputFormat ff_eac3_demuxer; extern const FFOutputFormat ff_eac3_muxer; extern const AVInputFormat ff_epaf_demuxer; +extern const AVInputFormat ff_evc_demuxer; extern const FFOutputFormat ff_evc_muxer; extern const FFOutputFormat ff_f4v_muxer; extern const AVInputFormat ff_ffmetadata_demuxer; |