comparison avformat.h @ 3320:d3d68f5f388f libavformat

chapter id and timebase
author michael
date Fri, 23 May 2008 12:43:33 +0000
parents 724f338005d4
children b847faf64408
comparison
equal deleted inserted replaced
3319:609eabc17cb2 3320:d3d68f5f388f
388 388
389 #define AVFMTCTX_NOHEADER 0x0001 /**< signal that no header is present 389 #define AVFMTCTX_NOHEADER 0x0001 /**< signal that no header is present
390 (streams are added dynamically) */ 390 (streams are added dynamically) */
391 391
392 typedef struct AVChapter { 392 typedef struct AVChapter {
393 int id; ///< Unique id to identify the chapter
394 AVRational time_base; ///< Timebase in which the start/end timestamps are specified
393 int64_t start, end; /**< chapter start/end time in AV_TIME_BASE units */ 395 int64_t start, end; /**< chapter start/end time in AV_TIME_BASE units */
394 char *title; /**< chapter title */ 396 char *title; /**< chapter title */
395 } AVChapter; 397 } AVChapter;
396 398
397 #define MAX_STREAMS 20 399 #define MAX_STREAMS 20