# HG changeset patch # User romansh # Date 1223394629 0 # Node ID f7c7ef5e448b148d0ca5678d55b6ed0cd1bfc8bb # Parent 68f0d19ff0a27e75f6d94df096229f7459e755b5 Doxygenizing the comments diff -r 68f0d19ff0a2 -r f7c7ef5e448b dv.c --- a/dv.c Tue Oct 07 15:49:45 2008 +0000 +++ b/dv.c Tue Oct 07 15:50:29 2008 +0000 @@ -62,9 +62,11 @@ void (*idct_put[2])(uint8_t *dest, int line_size, DCTELEM *block); } DVVideoContext; -/* MultiThreading - dv_anchor applies to entire DV codec, not just the avcontext */ -/* one element is needed for each video segment in a DV frame */ -/* at most there are 4 DIF channels * 12 DIF sequences * 27 video segments (1080i50) */ +/** + * MultiThreading - dv_anchor applies to entire DV codec, not just the avcontext + * one element is needed for each video segment in a DV frame + * at most there are 4 DIF channels * 12 DIF sequences * 27 video segments (1080i50) + */ #define DV_ANCHOR_SIZE (4*12*27) static void* dv_anchor[DV_ANCHOR_SIZE]; diff -r 68f0d19ff0a2 -r f7c7ef5e448b dvdata.h --- a/dvdata.h Tue Oct 07 15:49:45 2008 +0000 +++ b/dvdata.h Tue Oct 07 15:50:29 2008 +0000 @@ -6073,7 +6073,9 @@ 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 @@ /* 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)