summaryrefslogtreecommitdiff
path: root/libavformat/jvdec.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-05-23 15:51:43 +0200
committerMichael Niedermayer <michaelni@gmx.at>2013-05-24 15:36:54 +0200
commit682f0035fb69eead6cb8268da79374ca9cfd2d62 (patch)
treeee7e9138495293e57a6dd626e086ec672fdfcb41 /libavformat/jvdec.c
parent8870cf7c0e93f47422eb258599cd028bafef60c5 (diff)
avformat/jvdec: fix doxygen comments
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/jvdec.c')
-rw-r--r--libavformat/jvdec.c8
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 {