comparison ppc/mpegvideo_ppc.c @ 5749:784dcbdc910f libavcodec

cosmetics: Fix AltiVec spelling.
author diego
date Tue, 02 Oct 2007 10:34:57 +0000
parents f4b916b6f5c5
children
comparison
equal deleted inserted replaced
5748:f4b916b6f5c5 5749:784dcbdc910f
49 // Test to make sure that the dct required alignments are met. 49 // Test to make sure that the dct required alignments are met.
50 if ((((long)(s->q_intra_matrix) & 0x0f) != 0) || 50 if ((((long)(s->q_intra_matrix) & 0x0f) != 0) ||
51 (((long)(s->q_inter_matrix) & 0x0f) != 0)) 51 (((long)(s->q_inter_matrix) & 0x0f) != 0))
52 { 52 {
53 av_log(s->avctx, AV_LOG_INFO, "Internal Error: q-matrix blocks must be 16-byte aligned " 53 av_log(s->avctx, AV_LOG_INFO, "Internal Error: q-matrix blocks must be 16-byte aligned "
54 "to use Altivec DCT. Reverting to non-altivec version.\n"); 54 "to use AltiVec DCT. Reverting to non-AltiVec version.\n");
55 return; 55 return;
56 } 56 }
57 57
58 if (((long)(s->intra_scantable.inverse) & 0x0f) != 0) 58 if (((long)(s->intra_scantable.inverse) & 0x0f) != 0)
59 { 59 {
60 av_log(s->avctx, AV_LOG_INFO, "Internal Error: scan table blocks must be 16-byte aligned " 60 av_log(s->avctx, AV_LOG_INFO, "Internal Error: scan table blocks must be 16-byte aligned "
61 "to use Altivec DCT. Reverting to non-altivec version.\n"); 61 "to use AltiVec DCT. Reverting to non-AltiVec version.\n");
62 return; 62 return;
63 } 63 }
64 64
65 65
66 if ((s->avctx->dct_algo == FF_DCT_AUTO) || 66 if ((s->avctx->dct_algo == FF_DCT_AUTO) ||