Commit d2974f16 authored by Michael Niedermayer's avatar Michael Niedermayer

chapter id and timebase

Originally committed as revision 13252 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 19757f61
...@@ -390,6 +390,8 @@ typedef struct AVProgram { ...@@ -390,6 +390,8 @@ typedef struct AVProgram {
(streams are added dynamically) */ (streams are added dynamically) */
typedef struct AVChapter { typedef struct AVChapter {
int id; ///< Unique id to identify the chapter
AVRational time_base; ///< Timebase in which the start/end timestamps are specified
int64_t start, end; /**< chapter start/end time in AV_TIME_BASE units */ int64_t start, end; /**< chapter start/end time in AV_TIME_BASE units */
char *title; /**< chapter title */ char *title; /**< chapter title */
} AVChapter; } AVChapter;
......
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