comparison avformat.h @ 3321:b847faf64408 libavformat

align comments
author michael
date Fri, 23 May 2008 12:44:12 +0000
parents d3d68f5f388f
children 97f7b77a969b
comparison
equal deleted inserted replaced
3320:d3d68f5f388f 3321:b847faf64408
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 AV_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
401 /** 401 /**