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

ARM: cosmetics
author mru
date Sun, 04 Oct 2009 13:13:08 +0000
parents 48be79afc72d
children 08573f5f587d
comparison
equal deleted inserted replaced
10361:a1cc263fba25 10362:838b42ccd65e
29 29
30 void av_cold ff_dsputil_init_armv5te(DSPContext* c, AVCodecContext *avctx) 30 void av_cold ff_dsputil_init_armv5te(DSPContext* c, AVCodecContext *avctx)
31 { 31 {
32 if (!avctx->lowres && (avctx->idct_algo == FF_IDCT_AUTO || 32 if (!avctx->lowres && (avctx->idct_algo == FF_IDCT_AUTO ||
33 avctx->idct_algo == FF_IDCT_SIMPLEARMV5TE)) { 33 avctx->idct_algo == FF_IDCT_SIMPLEARMV5TE)) {
34 c->idct_put= simple_idct_put_armv5te; 34 c->idct_put = simple_idct_put_armv5te;
35 c->idct_add= simple_idct_add_armv5te; 35 c->idct_add = simple_idct_add_armv5te;
36 c->idct = simple_idct_armv5te; 36 c->idct = simple_idct_armv5te;
37 c->idct_permutation_type = FF_NO_IDCT_PERM; 37 c->idct_permutation_type = FF_NO_IDCT_PERM;
38 } 38 }
39 39
40 c->prefetch = ff_prefetch_arm; 40 c->prefetch = ff_prefetch_arm;
41 } 41 }