Lines Matching full:conversion
8 * This file contains code for merged upsampling/color conversion.
14 * (ie, box filtering), we can save some work in color conversion by
16 * samples at one time. In the conversion equations
23 * multiplications needed for color conversion.
26 * YCbCr => RGB color conversion only.
65 /* Pointer to routine to do actual upsampling/conversion of one row group */
70 /* Private state for YCC->RGB conversion */
71 int * Cr_r_tab; /* => table for Cr to R conversion */
72 int * Cb_b_tab; /* => table for Cb to B conversion */
73 INT32 * Cr_g_tab; /* => table for Cr to G conversion */
74 INT32 * Cb_g_tab; /* => table for Cb to G conversion */
96 * Initialize tables for YCC->RGB colorspace conversion.
156 * Control routine to do upsampling (and color conversion).
237 * the actual upsampling/conversion. One row group is processed per call.
701 * Module initialization routine for merged upsampling/color conversion.