mpegvideo_ppc.c 2.6 KB
Newer Older
1 2 3
/*
 * Copyright (c) 2002 Dieter Shirley
 *
4 5 6
 * This file is part of FFmpeg.
 *
 * FFmpeg is free software; you can redistribute it and/or
7 8
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
9
 * version 2.1 of the License, or (at your option) any later version.
10
 *
11
 * FFmpeg is distributed in the hope that it will be useful,
12 13 14 15 16
 * 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
17
 * License along with FFmpeg; if not, write to the Free Software
18
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19
 */
20

21 22
#include "dsputil.h"
#include "mpegvideo.h"
F
Fabrice Bellard 已提交
23
#include <time.h>
24 25
#include "dsputil_altivec.h"

26
extern int dct_quantize_altivec(MpegEncContext *s,
27 28
        DCTELEM *block, int n,
        int qscale, int *overflow);
29 30
extern void dct_unquantize_h263_altivec(MpegEncContext *s,
                                        DCTELEM *block, int n, int qscale);
31

32 33
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);
34 35 36 37


void MPV_common_init_ppc(MpegEncContext *s)
{
38 39
    if (s->avctx->lowres==0)
    {
40 41 42
        if ((s->avctx->idct_algo == FF_IDCT_AUTO) ||
                (s->avctx->idct_algo == FF_IDCT_ALTIVEC))
        {
43 44 45
            s->dsp.idct_put = idct_put_altivec;
            s->dsp.idct_add = idct_add_altivec;
            s->dsp.idct_permutation_type = FF_TRANSPOSE_IDCT_PERM;
46
        }
47
    }
48

49 50 51 52 53
    // 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))
    {
        av_log(s->avctx, AV_LOG_INFO, "Internal Error: q-matrix blocks must be 16-byte aligned "
D
Diego Biurrun 已提交
54
                "to use AltiVec DCT. Reverting to non-AltiVec version.\n");
55 56
        return;
    }
57

58 59 60
    if (((long)(s->intra_scantable.inverse) & 0x0f) != 0)
    {
        av_log(s->avctx, AV_LOG_INFO, "Internal Error: scan table blocks must be 16-byte aligned "
D
Diego Biurrun 已提交
61
                "to use AltiVec DCT. Reverting to non-AltiVec version.\n");
62 63
        return;
    }
64 65


66 67 68
    if ((s->avctx->dct_algo == FF_DCT_AUTO) ||
            (s->avctx->dct_algo == FF_DCT_ALTIVEC))
    {
69
#if 0 /* seems to cause trouble under some circumstances */
70
        s->dct_quantize = dct_quantize_altivec;
71
#endif
72 73 74
        s->dct_unquantize_h263_intra = dct_unquantize_h263_altivec;
        s->dct_unquantize_h263_inter = dct_unquantize_h263_altivec;
    }
75 76
}