diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2005-08-15 14:22:43 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2005-08-15 14:22:43 +0000 |
commit | 30bc6613fed9592e81b04818cb3e6c95088460d1 (patch) | |
tree | 4bf6a1b588967fb4e176b9763731ed9478d93040 /libavformat/avformat.h | |
parent | af9da83b0e1192ae6163633f66c420a332e2932c (diff) | |
download | ffmpeg-30bc6613fed9592e81b04818cb3e6c95088460d1.tar.gz |
support fixing missing pts by parsing future frames
Originally committed as revision 4526 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/avformat.h')
-rw-r--r-- | libavformat/avformat.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/libavformat/avformat.h b/libavformat/avformat.h index 136f1c0a48..2b3937852a 100644 --- a/libavformat/avformat.h +++ b/libavformat/avformat.h @@ -5,8 +5,8 @@ extern "C" { #endif -#define LIBAVFORMAT_VERSION_INT ((49<<16)+(0<<8)+0) -#define LIBAVFORMAT_VERSION 49.0.0 +#define LIBAVFORMAT_VERSION_INT ((49<<16)+(1<<8)+0) +#define LIBAVFORMAT_VERSION 49.1.0 #define LIBAVFORMAT_BUILD LIBAVFORMAT_VERSION_INT #define LIBAVFORMAT_IDENT "Lavf" AV_STRINGIFY(LIBAVFORMAT_VERSION) @@ -332,6 +332,8 @@ typedef struct AVFormatContext { /* number of times to loop output in formats that support it */ int loop_output; + int flags; +#define AVFMT_FLAG_GENPTS 0x0001 ///< generate pts if missing even if it requires parsing future frames } AVFormatContext; typedef struct AVPacketList { |