comparison arm/dsputil_init_armv6.c @ 10362:838b42ccd65e libavcodec

ARM: cosmetics
author mru
date Sun, 04 Oct 2009 13:13:08 +0000
parents 48be79afc72d
children e55d957ef1a2
comparison
equal deleted inserted replaced
10361:a1cc263fba25 10362:838b42ccd65e
27 27
28 void av_cold ff_dsputil_init_armv6(DSPContext* c, AVCodecContext *avctx) 28 void av_cold ff_dsputil_init_armv6(DSPContext* c, AVCodecContext *avctx)
29 { 29 {
30 if (!avctx->lowres && (avctx->idct_algo == FF_IDCT_AUTO || 30 if (!avctx->lowres && (avctx->idct_algo == FF_IDCT_AUTO ||
31 avctx->idct_algo == FF_IDCT_SIMPLEARMV6)) { 31 avctx->idct_algo == FF_IDCT_SIMPLEARMV6)) {
32 c->idct_put= ff_simple_idct_put_armv6; 32 c->idct_put = ff_simple_idct_put_armv6;
33 c->idct_add= ff_simple_idct_add_armv6; 33 c->idct_add = ff_simple_idct_add_armv6;
34 c->idct = ff_simple_idct_armv6; 34 c->idct = ff_simple_idct_armv6;
35 c->idct_permutation_type= FF_LIBMPEG2_IDCT_PERM; 35 c->idct_permutation_type = FF_LIBMPEG2_IDCT_PERM;
36 } 36 }
37 } 37 }