]> rtime.felk.cvut.cz Git - frescor/ffmpeg.git/commitdiff
align and update doxygen
authorbcoudurier <bcoudurier@9553f0bf-9b14-0410-a0b8-cfaf0461ba5b>
Wed, 13 May 2009 08:01:33 +0000 (08:01 +0000)
committerbcoudurier <bcoudurier@9553f0bf-9b14-0410-a0b8-cfaf0461ba5b>
Wed, 13 May 2009 08:01:33 +0000 (08:01 +0000)
git-svn-id: file:///var/local/repositories/ffmpeg/trunk@18812 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b

libavformat/isom.h

index 5b18f1ee98a230be2cb0565aa33d6598cacf8d99..c9d5cee8f31ded518edec59a276d6ad3df5fdd6b 100644 (file)
@@ -86,7 +86,7 @@ typedef struct {
 
 typedef struct MOVStreamContext {
     ByteIOContext *pb;
-    int ffindex; /* the ffmpeg stream id */
+    int ffindex;          ///< AVStream index
     int next_chunk;
     unsigned int chunk_count;
     int64_t *chunk_offsets;
@@ -105,35 +105,35 @@ typedef struct MOVStreamContext {
     int *keyframes;
     int time_scale;
     int time_rate;
-    int time_offset; ///< time offset of the first edit list entry
+    int time_offset;      ///< time offset of the first edit list entry
     int current_sample;
     unsigned int bytes_per_frame;
     unsigned int samples_per_frame;
     int dv_audio_container;
     int pseudo_stream_id; ///< -1 means demux all ids
-    int16_t audio_cid; ///< stsd audio compression id
+    int16_t audio_cid;    ///< stsd audio compression id
     unsigned drefs_count;
     MOVDref *drefs;
     int dref_id;
-    int wrong_dts; ///< dts are wrong due to huge ctts offset (iMovie files)
-    int width;  ///< tkhd width
-    int height; ///< tkhd height
-    int dts_shift; ///< dts shift when ctts is negative
+    int wrong_dts;        ///< dts are wrong due to huge ctts offset (iMovie files)
+    int width;            ///< tkhd width
+    int height;           ///< tkhd height
+    int dts_shift;        ///< dts shift when ctts is negative
 } MOVStreamContext;
 
 typedef struct MOVContext {
     AVFormatContext *fc;
     int time_scale;
-    int64_t duration; /* duration of the longest track */
-    int found_moov; /* when both 'moov' and 'mdat' sections has been found */
-    int found_mdat; /* we suppose we have enough data to read the file */
+    int64_t duration;     ///< duration of the longest track
+    int found_moov;       ///< 'moov' atom has been found
+    int found_mdat;       ///< 'mdat' atom has been found
     DVDemuxContext *dv_demux;
     AVFormatContext *dv_fctx;
-    int isom; /* 1 if file is ISO Media (mp4/3gp) */
+    int isom;             ///< 1 if file is ISO Media (mp4/3gp)
     MOVFragment fragment; ///< current fragment in moof atom
     MOVTrackExt *trex_data;
     unsigned trex_count;
-    int itunes_metadata; ///< metadata are itunes style
+    int itunes_metadata;  ///< metadata are itunes style
 } MOVContext;
 
 #endif /* AVFORMAT_ISOM_H */