diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-06-03 14:13:14 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-06-04 19:51:43 +0200 |
commit | e762b1ce9505511b1ecbbd4868ec6879e32e8831 (patch) | |
tree | 298bc794b3c432b05d3248fee49b72303b78a31f /libavformat/ingenientdec.c | |
parent | ff494cbdafbaee57275e9227a8a2aff02184c346 (diff) | |
download | ffmpeg-e762b1ce9505511b1ecbbd4868ec6879e32e8831.tar.gz |
rawdec: add framerate private option.
Diffstat (limited to 'libavformat/ingenientdec.c')
-rw-r--r-- | libavformat/ingenientdec.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavformat/ingenientdec.c b/libavformat/ingenientdec.c index 7407a04dd9..febeb2ec35 100644 --- a/libavformat/ingenientdec.c +++ b/libavformat/ingenientdec.c @@ -61,11 +61,12 @@ static int ingenient_read_packet(AVFormatContext *s, AVPacket *pkt) AVInputFormat ff_ingenient_demuxer = { "ingenient", NULL_IF_CONFIG_SMALL("raw Ingenient MJPEG"), - 0, + sizeof(FFRawVideoDemuxerContext), NULL, ff_raw_video_read_header, ingenient_read_packet, .flags= AVFMT_GENERIC_INDEX, .extensions = "cgi", // FIXME .value = CODEC_ID_MJPEG, + .priv_class = &ff_rawvideo_demuxer_class, }; |