diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2004-10-16 21:27:42 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2004-10-16 21:27:42 +0000 |
commit | 17c88cb0cee80b76bd157174fbd5e6e76712bff5 (patch) | |
tree | f99feea019a2a4a811ae321b5d06671d2d14a998 /libavformat/avformat.h | |
parent | 1f631450fd177e49141845db0989e4760689d3e5 (diff) | |
download | ffmpeg-17c88cb0cee80b76bd157174fbd5e6e76712bff5.tar.gz |
user setable preload and max_mux_delay
Originally committed as revision 3602 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/avformat.h')
-rw-r--r-- | libavformat/avformat.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libavformat/avformat.h b/libavformat/avformat.h index f12ad04077..a17778ea51 100644 --- a/libavformat/avformat.h +++ b/libavformat/avformat.h @@ -5,7 +5,7 @@ extern "C" { #endif -#define LIBAVFORMAT_BUILD 4619 +#define LIBAVFORMAT_BUILD 4620 #define LIBAVFORMAT_VERSION_INT FFMPEG_VERSION_INT #define LIBAVFORMAT_VERSION FFMPEG_VERSION @@ -310,6 +310,8 @@ typedef struct AVFormatContext { int mux_rate; int packet_size; + int preload; + int max_delay; } AVFormatContext; typedef struct AVPacketList { |