Commit 68ff5289 authored by Michael Niedermayer's avatar Michael Niedermayer

avformat/wtvdec: fix doxygen comments

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 682f0035
......@@ -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) */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment