comparison avformat.h @ 3445:4a1ecbbf5725 libavformat

Make timestamp debugging work nicer.
author michael
date Mon, 09 Jun 2008 13:38:56 +0000
parents f9cf53254a61
children c3b9334f46ae
comparison
equal deleted inserted replaced
3444:59989e1a2154 3445:4a1ecbbf5725
20 20
21 #ifndef FFMPEG_AVFORMAT_H 21 #ifndef FFMPEG_AVFORMAT_H
22 #define FFMPEG_AVFORMAT_H 22 #define FFMPEG_AVFORMAT_H
23 23
24 #define LIBAVFORMAT_VERSION_MAJOR 52 24 #define LIBAVFORMAT_VERSION_MAJOR 52
25 #define LIBAVFORMAT_VERSION_MINOR 15 25 #define LIBAVFORMAT_VERSION_MINOR 16
26 #define LIBAVFORMAT_VERSION_MICRO 0 26 #define LIBAVFORMAT_VERSION_MICRO 0
27 27
28 #define LIBAVFORMAT_VERSION_INT AV_VERSION_INT(LIBAVFORMAT_VERSION_MAJOR, \ 28 #define LIBAVFORMAT_VERSION_INT AV_VERSION_INT(LIBAVFORMAT_VERSION_MAJOR, \
29 LIBAVFORMAT_VERSION_MINOR, \ 29 LIBAVFORMAT_VERSION_MINOR, \
30 LIBAVFORMAT_VERSION_MICRO) 30 LIBAVFORMAT_VERSION_MICRO)
547 */ 547 */
548 unsigned int max_picture_buffer; 548 unsigned int max_picture_buffer;
549 549
550 unsigned int nb_chapters; 550 unsigned int nb_chapters;
551 AVChapter **chapters; 551 AVChapter **chapters;
552
553 /**
554 * Flags to enable debuging.
555 */
556 int debug;
557 #define FF_FDEBUG_TS 0x0001
552 } AVFormatContext; 558 } AVFormatContext;
553 559
554 typedef struct AVPacketList { 560 typedef struct AVPacketList {
555 AVPacket pkt; 561 AVPacket pkt;
556 struct AVPacketList *next; 562 struct AVPacketList *next;