diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-05-23 15:52:07 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-05-24 15:36:54 +0200 |
commit | 68ff5289698bac14c37ba6349998bf8352068682 (patch) | |
tree | fd7df52a0e80c5eff111ed625db99a23feabd37e | |
parent | 682f0035fb69eead6cb8268da79374ca9cfd2d62 (diff) | |
download | ffmpeg-68ff5289698bac14c37ba6349998bf8352068682.tar.gz |
avformat/wtvdec: fix doxygen comments
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavformat/wtvdec.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/libavformat/wtvdec.c b/libavformat/wtvdec.c index e423370a9b..6427dd1049 100644 --- a/libavformat/wtvdec.c +++ b/libavformat/wtvdec.c @@ -47,11 +47,11 @@ */ typedef struct { - AVIOContext *pb_filesystem; /** file system (AVFormatContext->pb) */ + AVIOContext *pb_filesystem; /**< file system (AVFormatContext->pb) */ - int sector_bits; /** sector shift bits; used to convert sector number into pb_filesystem offset */ - uint32_t *sectors; /** file allocation table */ - int nb_sectors; /** number of sectors */ + int sector_bits; /**< sector shift bits; used to convert sector number into pb_filesystem offset */ + uint32_t *sectors; /**< file allocation table */ + int nb_sectors; /**< number of sectors */ int error; int64_t position; @@ -306,10 +306,10 @@ typedef struct { } WtvStream; typedef struct { - AVIOContext *pb; /** timeline file */ + AVIOContext *pb; /**< timeline file */ int64_t epoch; - int64_t pts; /** pts for next data chunk */ - int64_t last_valid_pts; /** latest valid pts, used for interative seeking */ + int64_t pts; /**< pts for next data chunk */ + int64_t last_valid_pts; /**< latest valid pts, used for interative seeking */ /* maintain private seek index, as the AVIndexEntry->pos is relative to the start of the 'timeline' file, not the file system (AVFormatContext->pb) */ |