comparison avformat.h @ 2973:910ac68ab3b5 libavformat

Add support for Matroska attachments. patch by eugeni _dot_ stepanov _at_ gmail.com and myself
author aurel
date Sun, 27 Jan 2008 15:43:17 +0000
parents b2d1cd7ab383
children d993d7e321d6
comparison
equal deleted inserted replaced
2972:bc330130bdce 2973:910ac68ab3b5
19 */ 19 */
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_INT ((52<<16)+(5<<8)+0) 24 #define LIBAVFORMAT_VERSION_INT ((52<<16)+(6<<8)+0)
25 #define LIBAVFORMAT_VERSION 52.5.0 25 #define LIBAVFORMAT_VERSION 52.6.0
26 #define LIBAVFORMAT_BUILD LIBAVFORMAT_VERSION_INT 26 #define LIBAVFORMAT_BUILD LIBAVFORMAT_VERSION_INT
27 27
28 #define LIBAVFORMAT_IDENT "Lavf" AV_STRINGIFY(LIBAVFORMAT_VERSION) 28 #define LIBAVFORMAT_IDENT "Lavf" AV_STRINGIFY(LIBAVFORMAT_VERSION)
29 29
30 #include <time.h> 30 #include <time.h>
345 345
346 int64_t nb_frames; ///< number of frames in this stream if known or 0 346 int64_t nb_frames; ///< number of frames in this stream if known or 0
347 347
348 #define MAX_REORDER_DELAY 4 348 #define MAX_REORDER_DELAY 4
349 int64_t pts_buffer[MAX_REORDER_DELAY+1]; 349 int64_t pts_buffer[MAX_REORDER_DELAY+1];
350
351 char *filename; /**< source filename of the stream */
350 } AVStream; 352 } AVStream;
351 353
352 #define AV_PROGRAM_RUNNING 1 354 #define AV_PROGRAM_RUNNING 1
353 355
354 /** 356 /**