diff options
author | Nico Sabbi <nicola.sabbi@poste.it> | 2006-08-27 12:21:19 +0000 |
---|---|---|
committer | Nico Sabbi <nicola.sabbi@poste.it> | 2006-08-27 12:21:19 +0000 |
commit | 9e6c94707e9b1cbbf7c8c63b6235fe0d7739e07f (patch) | |
tree | e3f4eafa4479549264b9140eedd155e4842897db /libavformat/avformat.h | |
parent | 4eb72c6b2354e7e4126bb958832bf3dd24c8e7e9 (diff) | |
download | ffmpeg-9e6c94707e9b1cbbf7c8c63b6235fe0d7739e07f.tar.gz |
added option probesize; at the moment only used by mpegts.c
Originally committed as revision 6109 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/avformat.h')
-rw-r--r-- | libavformat/avformat.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavformat/avformat.h b/libavformat/avformat.h index 9ba1b27865..934d92b73a 100644 --- a/libavformat/avformat.h +++ b/libavformat/avformat.h @@ -341,6 +341,8 @@ typedef struct AVFormatContext { #define AVFMT_FLAG_GENPTS 0x0001 ///< generate pts if missing even if it requires parsing future frames int loop_input; + /* decoding: size of data to probe; encoding unused */ + unsigned int probesize; } AVFormatContext; typedef struct AVPacketList { |