comparison avformat.h @ 3322:97f7b77a969b libavformat

clarify start/end timebase
author michael
date Fri, 23 May 2008 12:45:03 +0000
parents b847faf64408
children 4bf98e198eec
comparison
equal deleted inserted replaced
3321:b847faf64408 3322:97f7b77a969b
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 393 int id; ///< Unique id to identify the chapter
394 AVRational time_base; ///< Timebase in which the start/end timestamps are specified 394 AVRational time_base; ///< Timebase in which the start/end timestamps are specified
395 int64_t start, end; ///< chapter start/end time in AV_TIME_BASE units 395 int64_t start, end; ///< chapter start/end time in time_base units
396 char *title; ///< chapter title 396 char *title; ///< chapter title
397 } AVChapter; 397 } AVChapter;
398 398
399 #define MAX_STREAMS 20 399 #define MAX_STREAMS 20
400 400