]> git.sesse.net Git - ffmpeg/commitdiff
align comments
authorMichael Niedermayer <michaelni@gmx.at>
Fri, 23 May 2008 12:44:12 +0000 (12:44 +0000)
committerMichael Niedermayer <michaelni@gmx.at>
Fri, 23 May 2008 12:44:12 +0000 (12:44 +0000)
Originally committed as revision 13253 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavformat/avformat.h

index f9f351ae57b9253b6ef1d05be66e7ce894bed42a..f53ef3030d7c80aac83342c69ab79660ed9507df 100644 (file)
@@ -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