dct 71 libavcodec/agm.c int dct; dct 1139 libavcodec/agm.c } else if (!s->dct) { dct 1143 libavcodec/agm.c if (s->dct) { dct 1192 libavcodec/agm.c if (!s->dct && !s->rgb) dct 1194 libavcodec/agm.c else if (!s->dct && s->rgb) dct 1209 libavcodec/agm.c if (s->dct) { dct 1211 libavcodec/agm.c } else if (!s->dct && !s->rgb) { dct 1242 libavcodec/agm.c s->dct = avctx->codec_tag != MKTAG('A', 'G', 'M', '4') && dct 1245 libavcodec/agm.c if (!s->rgb && !s->dct) { dct 64 libavcodec/binkaudio.c DCTContext dct; dct 142 libavcodec/binkaudio.c ff_dct_init(&s->trans.dct, frame_len_bits, DCT_III); dct 251 libavcodec/binkaudio.c s->trans.dct.dct_calc(&s->trans.dct, coeffs); dct 282 libavcodec/binkaudio.c ff_dct_end(&s->trans.dct); dct 702 libavcodec/me_cmp.c int16_t dct[8][8]; dct 705 libavcodec/me_cmp.c s->pdsp.diff_pixels_unaligned(dct[0], src1, src2, stride); dct 707 libavcodec/me_cmp.c #define SRC(x) dct[i][x] dct 708 libavcodec/me_cmp.c #define DST(x, v) dct[i][x] = v dct 714 libavcodec/me_cmp.c #define SRC(x) dct[x][i] dct 33 libavcodec/mpegaudiodsp.c DCTContext dct; dct 35 libavcodec/mpegaudiodsp.c ff_dct_init(&dct, 5, DCT_II); dct 42 libavcodec/mpegaudiodsp.c s->dct32_float = dct.dct32; dct 218 libavcodec/ppc/h264dsp.c static void h264_idct8_add_altivec(uint8_t *dst, int16_t *dct, int stride) dct 234 libavcodec/ppc/h264dsp.c dct[0] += 32; // rounding for the >>6 at the end dct 236 libavcodec/ppc/h264dsp.c s0 = vec_ld(0x00, (int16_t*)dct); dct 237 libavcodec/ppc/h264dsp.c s1 = vec_ld(0x10, (int16_t*)dct); dct 238 libavcodec/ppc/h264dsp.c s2 = vec_ld(0x20, (int16_t*)dct); dct 239 libavcodec/ppc/h264dsp.c s3 = vec_ld(0x30, (int16_t*)dct); dct 240 libavcodec/ppc/h264dsp.c s4 = vec_ld(0x40, (int16_t*)dct); dct 241 libavcodec/ppc/h264dsp.c s5 = vec_ld(0x50, (int16_t*)dct); dct 242 libavcodec/ppc/h264dsp.c s6 = vec_ld(0x60, (int16_t*)dct); dct 243 libavcodec/ppc/h264dsp.c s7 = vec_ld(0x70, (int16_t*)dct); dct 244 libavcodec/ppc/h264dsp.c memset(dct, 0, 64 * sizeof(int16_t)); dct 178 libavcodec/tests/dct.c static int dct_error(const struct algo *dct, int test, int is_idct, int speed, const int bits) dct 201 libavcodec/tests/dct.c permute(block, block1, dct->perm_type); dct 203 libavcodec/tests/dct.c dct->func(block); dct 206 libavcodec/tests/dct.c if (!strcmp(dct->name, "IJG-AAN-INT")) { dct 214 libavcodec/tests/dct.c if (!strcmp(dct->name, "PR-SSE2")) dct 255 libavcodec/tests/dct.c is_idct ? "IDCT" : "DCT", dct->name, err_inf, dct 259 libavcodec/tests/dct.c if (spec_err && !dct->nonspec) { dct 270 libavcodec/tests/dct.c permute(block1, block, dct->perm_type); dct 277 libavcodec/tests/dct.c dct->func(block); dct 284 libavcodec/tests/dct.c printf("%s %s: %0.1f kdct/s\n", is_idct ? "IDCT" : "DCT", dct->name, dct 267 libavcodec/wmavoice.c DCTContext dct, dst; ///< contexts for phase shift (in Hilbert dct 400 libavcodec/wmavoice.c ff_dct_init(&s->dct, 6, DCT_I); dct 658 libavcodec/wmavoice.c s->dct.dct_calc(&s->dct, lpcs); dct 1992 libavcodec/wmavoice.c ff_dct_end(&s->dct); dct 1044 libavfilter/af_arnndn.c dct(s, tmp, Exp); dct 1069 libavfilter/af_arnndn.c dct(s, features, Ly); dct 55 libavfilter/vf_spp.c return prev ? NULL : s->dct; dct 286 libavfilter/vf_spp.c p->dct->get_pixels_unaligned(block, p->src + sample_bytes*index, sample_bytes*linesize); dct 287 libavfilter/vf_spp.c p->dct->fdct(block); dct 288 libavfilter/vf_spp.c p->requantize(block2, block, qp, p->dct->idct_permutation); dct 289 libavfilter/vf_spp.c p->dct->idct(block2); dct 341 libavfilter/vf_spp.c av_opt_set_int(s->dct, "bits_per_sample", bps, 0); dct 342 libavfilter/vf_spp.c avcodec_dct_init(s->dct); dct 467 libavfilter/vf_spp.c s->dct = avcodec_dct_alloc(); dct 468 libavfilter/vf_spp.c if (!s->dct) dct 475 libavfilter/vf_spp.c if ((ret = av_opt_set(s->dct, e->key, e->value, 0)) < 0) dct 495 libavfilter/vf_spp.c av_freep(&s->dct); dct 40 libavfilter/vf_spp.h AVDCT *dct; dct 230 libavfilter/x86/vf_spp.c s->dct->idct_permutation, dct 231 libavfilter/x86/vf_spp.c sizeof(s->dct->idct_permutation)); dct 234 libavfilter/x86/vf_spp.c av_opt_get_int(s->dct, "bits_per_sample", 0, &bps);