comparison avformat.h @ 1285:b5226e679a31 libavformat

fix b pyramid in mp4 muxing if no dts are provided to the muxer
author michael
date Wed, 30 Aug 2006 21:18:17 +0000
parents a12e0b434174
children eb0a8abb507c
comparison
equal deleted inserted replaced
1284:5abdc17dc283 1285:b5226e679a31
264 support seeking natively */ 264 support seeking natively */
265 int nb_index_entries; 265 int nb_index_entries;
266 int index_entries_allocated_size; 266 int index_entries_allocated_size;
267 267
268 int64_t nb_frames; ///< number of frames in this stream if known or 0 268 int64_t nb_frames; ///< number of frames in this stream if known or 0
269
270 #define MAX_REORDER_DELAY 4
271 int64_t pts_buffer[MAX_REORDER_DELAY+1];
269 } AVStream; 272 } AVStream;
270 273
271 #define AVFMTCTX_NOHEADER 0x0001 /* signal that no header is present 274 #define AVFMTCTX_NOHEADER 0x0001 /* signal that no header is present
272 (streams are added dynamically) */ 275 (streams are added dynamically) */
273 276