diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-05-23 15:51:43 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-05-24 15:36:54 +0200 |
commit | 682f0035fb69eead6cb8268da79374ca9cfd2d62 (patch) | |
tree | ee7e9138495293e57a6dd626e086ec672fdfcb41 /libavformat/jvdec.c | |
parent | 8870cf7c0e93f47422eb258599cd028bafef60c5 (diff) | |
download | ffmpeg-682f0035fb69eead6cb8268da79374ca9cfd2d62.tar.gz |
avformat/jvdec: fix doxygen comments
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/jvdec.c')
-rw-r--r-- | libavformat/jvdec.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libavformat/jvdec.c b/libavformat/jvdec.c index e941492762..69ac8f27fd 100644 --- a/libavformat/jvdec.c +++ b/libavformat/jvdec.c @@ -33,10 +33,10 @@ #define JV_PREAMBLE_SIZE 5 typedef struct { - int audio_size; /** audio packet size (bytes) */ - int video_size; /** video packet size (bytes) */ - int palette_size; /** palette size (bytes) */ - int video_type; /** per-frame video compression type */ + int audio_size; /**< audio packet size (bytes) */ + int video_size; /**< video packet size (bytes) */ + int palette_size; /**< palette size (bytes) */ + int video_type; /**< per-frame video compression type */ } JVFrame; typedef struct { |