mpegvideo_ppc.c 3.0 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
/*
 * Copyright (c) 2002 Dieter Shirley
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */
 
#include "../dsputil.h"
#include "../mpegvideo.h"
F
Fabrice Bellard 已提交
21
#include <time.h>
22 23 24 25 26 27 28 29

#ifdef HAVE_ALTIVEC
#include "dsputil_altivec.h"
#endif

extern int dct_quantize_altivec(MpegEncContext *s,  
        DCTELEM *block, int n,
        int qscale, int *overflow);
30 31
extern void dct_unquantize_h263_altivec(MpegEncContext *s,
                                        DCTELEM *block, int n, int qscale);
32

33 34
extern void idct_put_altivec(uint8_t *dest, int line_size, int16_t *block);
extern void idct_add_altivec(uint8_t *dest, int line_size, int16_t *block);
35 36 37 38


void MPV_common_init_ppc(MpegEncContext *s)
{
39
#ifdef HAVE_ALTIVEC
40 41
    if (has_altivec())
    {
42 43
      if (s->avctx->lowres==0)
      {
44 45 46
        if ((s->avctx->idct_algo == FF_IDCT_AUTO) ||
                (s->avctx->idct_algo == FF_IDCT_ALTIVEC))
        {
47 48
            s->dsp.idct_put = idct_put_altivec;
            s->dsp.idct_add = idct_add_altivec;
49
#ifndef ALTIVEC_USE_REFERENCE_C_CODE
50
            s->dsp.idct_permutation_type = FF_TRANSPOSE_IDCT_PERM;
51
#else /* ALTIVEC_USE_REFERENCE_C_CODE */
52
            s->dsp.idct_permutation_type = FF_NO_IDCT_PERM;
53
#endif /* ALTIVEC_USE_REFERENCE_C_CODE */
54
        }
55
      }
56 57 58 59 60

        // Test to make sure that the dct required alignments are met.
        if ((((long)(s->q_intra_matrix) & 0x0f) != 0) ||
                (((long)(s->q_inter_matrix) & 0x0f) != 0))
        {
61
            av_log(s->avctx, AV_LOG_INFO, "Internal Error: q-matrix blocks must be 16-byte aligned "
62 63 64 65 66 67
                    "to use Altivec DCT. Reverting to non-altivec version.\n");
            return;
        }

        if (((long)(s->intra_scantable.inverse) & 0x0f) != 0)
        {
68
            av_log(s->avctx, AV_LOG_INFO, "Internal Error: scan table blocks must be 16-byte aligned "
69 70 71 72 73 74 75 76
                    "to use Altivec DCT. Reverting to non-altivec version.\n");
            return;
        }


        if ((s->avctx->dct_algo == FF_DCT_AUTO) ||
                (s->avctx->dct_algo == FF_DCT_ALTIVEC))
        {
77
#if 0 /* seems to cause trouble under some circumstances */
78
            s->dct_quantize = dct_quantize_altivec;
79
#endif
M
Michael Niedermayer 已提交
80 81
            s->dct_unquantize_h263_intra = dct_unquantize_h263_altivec;
            s->dct_unquantize_h263_inter = dct_unquantize_h263_altivec;
82 83 84 85 86 87 88 89
        }
    } else
#endif
    {
        /* Non-AltiVec PPC optimisations here */
    }
}