diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-05-23 15:52:33 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-05-24 15:36:54 +0200 |
commit | 6d02bdc338211194e41750d63dbef83806af203c (patch) | |
tree | fb3072cf5ec2bb18a6741bd3f0776366ef1d747a | |
parent | 68ff5289698bac14c37ba6349998bf8352068682 (diff) | |
download | ffmpeg-6d02bdc338211194e41750d63dbef83806af203c.tar.gz |
vformat/wtvenc: fix doxygen comments
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavformat/wtvenc.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libavformat/wtvenc.c b/libavformat/wtvenc.c index 410a2dc355..a5692c1772 100644 --- a/libavformat/wtvenc.c +++ b/libavformat/wtvenc.c @@ -87,10 +87,10 @@ typedef struct { typedef struct { int64_t timeline_start_pos; WtvFile file[WTV_FILES]; - int64_t serial; /** chunk serial number */ - int64_t last_chunk_pos; /** last chunk position */ - int64_t last_timestamp_pos; /** last timestamp chunk position */ - int64_t first_index_pos; /** first index_chunk position */ + int64_t serial; /**< chunk serial number */ + int64_t last_chunk_pos; /**< last chunk position */ + int64_t last_timestamp_pos; /**< last timestamp chunk position */ + int64_t first_index_pos; /**< first index_chunk position */ WtvChunkEntry index[MAX_NB_INDEX]; int nb_index; |