diff options
author | Roman Shaposhnik <roman@shaposhnik.org> | 2008-10-07 15:50:29 +0000 |
---|---|---|
committer | Roman Shaposhnik <roman@shaposhnik.org> | 2008-10-07 15:50:29 +0000 |
commit | 2b6cee9f1e3741356462d25b2ac7221d75afdc56 (patch) | |
tree | 2e9b4561549d3adc1ce68035c53931127b712762 /libavcodec/dvdata.h | |
parent | c9b0b38f45c111cc037f3423f3eef8041d3f87e2 (diff) | |
download | ffmpeg-2b6cee9f1e3741356462d25b2ac7221d75afdc56.tar.gz |
Doxygenizing the comments
Originally committed as revision 15578 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/dvdata.h')
-rw-r--r-- | libavcodec/dvdata.h | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/libavcodec/dvdata.h b/libavcodec/dvdata.h index 40206455f6..362929dafd 100644 --- a/libavcodec/dvdata.h +++ b/libavcodec/dvdata.h @@ -6073,7 +6073,9 @@ static const int dv_iweight_248[64] = { 22017, 25191, 24457, 27962, 22733, 24600, 25971, 29642, }; -/* the "inverse" DV100 weights are actually just the spec weights (zig-zagged) */ +/** + * the "inverse" DV100 weights are actually just the spec weights (zig-zagged) + */ static const int dv_iweight_1080_y[64] = { 128, 16, 16, 17, 17, 17, 18, 18, 18, 18, 18, 18, 19, 18, 18, 19, @@ -6371,10 +6373,14 @@ enum dv_pack_type { /* minimum number of bytes to read from a DV stream in order to determine the profile */ #define DV_PROFILE_BYTES (6*80) /* 6 DIF blocks */ -/* largest possible DV frame, in bytes (1080i50) */ +/** + * largest possible DV frame, in bytes (1080i50) + */ #define DV_MAX_FRAME_SIZE 576000 -/* maximum number of blocks per macroblock in any DV format */ +/** + * maximum number of blocks per macroblock in any DV format + */ #define DV_MAX_BPM 8 static inline const DVprofile* dv_frame_profile(const uint8_t* frame) |