diff options
author | Alex Converse <aconverse@google.com> | 2011-05-09 14:34:23 -0700 |
---|---|---|
committer | Alex Converse <alex.converse@gmail.com> | 2011-05-25 12:34:46 -0700 |
commit | 30315a8d9c9bea98d54260956db58b6df56f9347 (patch) | |
tree | 0d2a29d48fb91454ce0849e369d325ea9fed9829 /libavformat/avformat.h | |
parent | 80068da3a0bafc7e24ce6b1f91cefec7d793b4d2 (diff) | |
download | ffmpeg-30315a8d9c9bea98d54260956db58b6df56f9347.tar.gz |
avformat: Add fpsprobesize as an AVOption.
Diffstat (limited to 'libavformat/avformat.h')
-rw-r--r-- | libavformat/avformat.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libavformat/avformat.h b/libavformat/avformat.h index 11dbe8b2de..3a652a354b 100644 --- a/libavformat/avformat.h +++ b/libavformat/avformat.h @@ -817,6 +817,11 @@ typedef struct AVFormatContext { * - decoding: Unused. */ int64_t start_time_realtime; + + /** + * decoding: number of frames used to probe fps + */ + int fps_probe_size; } AVFormatContext; typedef struct AVPacketList { |