diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2008-05-23 12:45:03 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2008-05-23 12:45:03 +0000 |
commit | 8931e7b48a96d8034dd01a5000433735c522d92a (patch) | |
tree | 434adeb4a07803bb70fccc3ee361ea06c7dbbbe3 | |
parent | c2fb6be4a6c416699f6782ca14a30f832ed1cccd (diff) | |
download | ffmpeg-8931e7b48a96d8034dd01a5000433735c522d92a.tar.gz |
clarify start/end timebase
Originally committed as revision 13254 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavformat/avformat.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/avformat.h b/libavformat/avformat.h index f53ef3030d..c7c38454dd 100644 --- a/libavformat/avformat.h +++ b/libavformat/avformat.h @@ -392,7 +392,7 @@ typedef struct AVProgram { 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 time_base units char *title; ///< chapter title } AVChapter; |