diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-09-11 15:10:15 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-09-11 15:10:15 +0200 |
commit | 5303a644f5889bfda2bf3d7abf17ab9c23104586 (patch) | |
tree | 73da62b9ce5684a4dd4c712225c993f75b339ff5 /libavformat/img2.h | |
parent | ea7ebadeb78c76ff14a85982d22fe4976aee3fbd (diff) | |
download | ffmpeg-5303a644f5889bfda2bf3d7abf17ab9c23104586.tar.gz |
avformat/img2: Make AVOptions available to img* demuxers defined in other files
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/img2.h')
-rw-r--r-- | libavformat/img2.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libavformat/img2.h b/libavformat/img2.h index dc53c5cc51..58a6833835 100644 --- a/libavformat/img2.h +++ b/libavformat/img2.h @@ -24,6 +24,7 @@ #include <stdint.h> #include "avformat.h" +#include "libavutil/opt.h" #if HAVE_GLOB #include <glob.h> @@ -54,8 +55,9 @@ typedef struct { int ts_from_file; } VideoDemuxData; +extern const AVOption ff_img_options[]; + int ff_img_read_header(AVFormatContext *s1); int ff_img_read_packet(AVFormatContext *s1, AVPacket *pkt); - #endif |