comparison dnxhdenc.c @ 8590:7a463923ecd1 libavcodec

Change semantic of CONFIG_*, HAVE_* and ARCH_*. They are now always defined to either 0 or 1.
author aurel
date Tue, 13 Jan 2009 23:44:16 +0000
parents bf6a78c6697b
children 85ad5d68ec98
comparison
equal deleted inserted replaced
8589:a29b5b5c3c9d 8590:7a463923ecd1
175 175
176 ctx->get_pixels_8x4_sym = dnxhd_get_pixels_8x4; 176 ctx->get_pixels_8x4_sym = dnxhd_get_pixels_8x4;
177 177
178 dsputil_init(&ctx->m.dsp, avctx); 178 dsputil_init(&ctx->m.dsp, avctx);
179 ff_dct_common_init(&ctx->m); 179 ff_dct_common_init(&ctx->m);
180 #ifdef HAVE_MMX 180 #if HAVE_MMX
181 ff_dnxhd_init_mmx(ctx); 181 ff_dnxhd_init_mmx(ctx);
182 #endif 182 #endif
183 if (!ctx->m.dct_quantize) 183 if (!ctx->m.dct_quantize)
184 ctx->m.dct_quantize = dct_quantize_c; 184 ctx->m.dct_quantize = dct_quantize_c;
185 185