diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2008-05-23 12:44:12 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2008-05-23 12:44:12 +0000 |
commit | c2fb6be4a6c416699f6782ca14a30f832ed1cccd (patch) | |
tree | 303fe5c087af2e3ea072f59ce8465edce204ad04 /libavformat/avformat.h | |
parent | d2974f16760aeff8d3ca220862ccb748ce16adf9 (diff) | |
download | ffmpeg-c2fb6be4a6c416699f6782ca14a30f832ed1cccd.tar.gz |
align comments
Originally committed as revision 13253 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/avformat.h')
-rw-r--r-- | libavformat/avformat.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/avformat.h b/libavformat/avformat.h index f9f351ae57..f53ef3030d 100644 --- a/libavformat/avformat.h +++ b/libavformat/avformat.h @@ -392,8 +392,8 @@ 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 */ - char *title; /**< chapter title */ + int64_t start, end; ///< chapter start/end time in AV_TIME_BASE units + char *title; ///< chapter title } AVChapter; #define MAX_STREAMS 20 |