comparison dv.c @ 8009:f7c7ef5e448b libavcodec

Doxygenizing the comments
author romansh
date Tue, 07 Oct 2008 15:50:29 +0000
parents 68f0d19ff0a2
children 4b19d9cbc75b
comparison
equal deleted inserted replaced
8008:68f0d19ff0a2 8009:f7c7ef5e448b
60 void (*get_pixels)(DCTELEM *block, const uint8_t *pixels, int line_size); 60 void (*get_pixels)(DCTELEM *block, const uint8_t *pixels, int line_size);
61 void (*fdct[2])(DCTELEM *block); 61 void (*fdct[2])(DCTELEM *block);
62 void (*idct_put[2])(uint8_t *dest, int line_size, DCTELEM *block); 62 void (*idct_put[2])(uint8_t *dest, int line_size, DCTELEM *block);
63 } DVVideoContext; 63 } DVVideoContext;
64 64
65 /* MultiThreading - dv_anchor applies to entire DV codec, not just the avcontext */ 65 /**
66 /* one element is needed for each video segment in a DV frame */ 66 * MultiThreading - dv_anchor applies to entire DV codec, not just the avcontext
67 /* at most there are 4 DIF channels * 12 DIF sequences * 27 video segments (1080i50) */ 67 * one element is needed for each video segment in a DV frame
68 * at most there are 4 DIF channels * 12 DIF sequences * 27 video segments (1080i50)
69 */
68 #define DV_ANCHOR_SIZE (4*12*27) 70 #define DV_ANCHOR_SIZE (4*12*27)
69 71
70 static void* dv_anchor[DV_ANCHOR_SIZE]; 72 static void* dv_anchor[DV_ANCHOR_SIZE];
71 73
72 #define TEX_VLC_BITS 9 74 #define TEX_VLC_BITS 9