diff options
author | Michael Niedermayer | 2016-06-09 05:00:52 +0200 |
---|---|---|
committer | Michael Niedermayer | 2016-06-09 10:35:13 +0200 |
commit | 4888932c4d3ac68c26f44d7adf1e22e0d7ed8808 (patch) | |
tree | 9f3249d944d355252d0b63d89fc5351fbda35bdf /libavformat/img2dec.c | |
parent | f2c8b666be4c09b66d7866269a6a8d7e1ebce01a (diff) |
avformat: Fix max value of AV_OPT_TYPE_VIDEO_RATE
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavformat/img2dec.c')
-rw-r--r-- | libavformat/img2dec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/img2dec.c b/libavformat/img2dec.c index 8dfb8138ad..1b0e608013 100644 --- a/libavformat/img2dec.c +++ b/libavformat/img2dec.c @@ -561,7 +561,7 @@ static int img_read_seek(AVFormatContext *s, int stream_index, int64_t timestamp #define OFFSET(x) offsetof(VideoDemuxData, x) #define DEC AV_OPT_FLAG_DECODING_PARAM const AVOption ff_img_options[] = { - { "framerate", "set the video framerate", OFFSET(framerate), AV_OPT_TYPE_VIDEO_RATE, {.str = "25"}, 0, 0, DEC }, + { "framerate", "set the video framerate", OFFSET(framerate), AV_OPT_TYPE_VIDEO_RATE, {.str = "25"}, 0, INT_MAX, DEC }, { "loop", "force loop over input file sequence", OFFSET(loop), AV_OPT_TYPE_BOOL, {.i64 = 0 }, 0, 1, DEC }, { "pattern_type", "set pattern type", OFFSET(pattern_type), AV_OPT_TYPE_INT, {.i64=PT_DEFAULT}, 0, INT_MAX, DEC, "pattern_type"}, |