Commit 6d72f36d authored by bcoudurier's avatar bcoudurier

increase MAX_REORDER_DELAY and pts_buffer size to 16, max for h264 atm

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@14715 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 9ea55926
......@@ -390,14 +390,17 @@ typedef struct AVStream {
int64_t nb_frames; ///< number of frames in this stream if known or 0
#define MAX_REORDER_DELAY 4
int64_t pts_buffer[MAX_REORDER_DELAY+1];
#if LIBAVFORMAT_VERSION_INT < (53<<16)
int64_t unused[4+1];
#endif
char *filename; /**< source filename of the stream */
int disposition; /**< AV_DISPOSITION_* bitfield */
AVProbeData probe_data;
#define MAX_REORDER_DELAY 16
int64_t pts_buffer[MAX_REORDER_DELAY+1];
} AVStream;
#define AV_PROGRAM_RUNNING 1
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment