diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2008-06-09 13:38:56 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2008-06-09 13:38:56 +0000 |
commit | 45b2b05f8e3842fa626d58226926f561b95749c2 (patch) | |
tree | e3c57cf675f44546c7649173ba4155711b0d01b7 /libavformat/avformat.h | |
parent | e785efc49af8e6df892c8f2ada49a0dee178b95d (diff) | |
download | ffmpeg-45b2b05f8e3842fa626d58226926f561b95749c2.tar.gz |
Make timestamp debugging work nicer.
Originally committed as revision 13728 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/avformat.h')
-rw-r--r-- | libavformat/avformat.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/libavformat/avformat.h b/libavformat/avformat.h index d279506839..af93b7cff2 100644 --- a/libavformat/avformat.h +++ b/libavformat/avformat.h @@ -22,7 +22,7 @@ #define FFMPEG_AVFORMAT_H #define LIBAVFORMAT_VERSION_MAJOR 52 -#define LIBAVFORMAT_VERSION_MINOR 15 +#define LIBAVFORMAT_VERSION_MINOR 16 #define LIBAVFORMAT_VERSION_MICRO 0 #define LIBAVFORMAT_VERSION_INT AV_VERSION_INT(LIBAVFORMAT_VERSION_MAJOR, \ @@ -549,6 +549,12 @@ typedef struct AVFormatContext { unsigned int nb_chapters; AVChapter **chapters; + + /** + * Flags to enable debuging. + */ + int debug; +#define FF_FDEBUG_TS 0x0001 } AVFormatContext; typedef struct AVPacketList { |