2002-11-02 11:28:08 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2002 Dieter Shirley
|
|
|
|
*
|
2006-10-07 15:30:46 +00:00
|
|
|
* This file is part of FFmpeg.
|
|
|
|
*
|
|
|
|
* FFmpeg is free software; you can redistribute it and/or
|
2002-11-02 11:28:08 +00:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
2006-10-07 15:30:46 +00:00
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
2002-11-02 11:28:08 +00:00
|
|
|
*
|
2006-10-07 15:30:46 +00:00
|
|
|
* FFmpeg is distributed in the hope that it will be useful,
|
2002-11-02 11:28:08 +00:00
|
|
|
* 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
|
2006-10-07 15:30:46 +00:00
|
|
|
* License along with FFmpeg; if not, write to the Free Software
|
2006-01-12 22:43:26 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
2002-11-02 11:28:08 +00:00
|
|
|
*/
|
2005-12-17 18:14:38 +00:00
|
|
|
|
2007-05-16 09:51:45 +00:00
|
|
|
#include "dsputil.h"
|
|
|
|
#include "mpegvideo.h"
|
2003-01-07 18:15:14 +00:00
|
|
|
#include <time.h>
|
2002-11-02 11:28:08 +00:00
|
|
|
|
|
|
|
#ifdef HAVE_ALTIVEC
|
|
|
|
#include "dsputil_altivec.h"
|
|
|
|
#endif
|
|
|
|
|
2005-12-17 18:14:38 +00:00
|
|
|
extern int dct_quantize_altivec(MpegEncContext *s,
|
2002-11-02 11:28:08 +00:00
|
|
|
DCTELEM *block, int n,
|
|
|
|
int qscale, int *overflow);
|
2003-01-12 13:29:24 +00:00
|
|
|
extern void dct_unquantize_h263_altivec(MpegEncContext *s,
|
|
|
|
DCTELEM *block, int n, int qscale);
|
2002-11-02 11:28:08 +00:00
|
|
|
|
2003-02-11 16:35:48 +00:00
|
|
|
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);
|
2002-11-02 11:28:08 +00:00
|
|
|
|
|
|
|
|
|
|
|
void MPV_common_init_ppc(MpegEncContext *s)
|
|
|
|
{
|
2003-10-11 08:25:23 +00:00
|
|
|
#ifdef HAVE_ALTIVEC
|
2002-11-02 11:28:08 +00:00
|
|
|
if (has_altivec())
|
|
|
|
{
|
2005-07-01 09:37:35 +00:00
|
|
|
if (s->avctx->lowres==0)
|
|
|
|
{
|
2002-11-02 11:28:08 +00:00
|
|
|
if ((s->avctx->idct_algo == FF_IDCT_AUTO) ||
|
|
|
|
(s->avctx->idct_algo == FF_IDCT_ALTIVEC))
|
|
|
|
{
|
2003-03-06 12:06:00 +00:00
|
|
|
s->dsp.idct_put = idct_put_altivec;
|
|
|
|
s->dsp.idct_add = idct_add_altivec;
|
|
|
|
s->dsp.idct_permutation_type = FF_TRANSPOSE_IDCT_PERM;
|
2002-11-02 11:28:08 +00:00
|
|
|
}
|
2005-07-01 09:37:35 +00:00
|
|
|
}
|
2002-11-02 11:28:08 +00:00
|
|
|
|
|
|
|
// 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))
|
|
|
|
{
|
2004-02-23 21:18:29 +00:00
|
|
|
av_log(s->avctx, AV_LOG_INFO, "Internal Error: q-matrix blocks must be 16-byte aligned "
|
2002-11-02 11:28:08 +00:00
|
|
|
"to use Altivec DCT. Reverting to non-altivec version.\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (((long)(s->intra_scantable.inverse) & 0x0f) != 0)
|
|
|
|
{
|
2004-02-23 21:18:29 +00:00
|
|
|
av_log(s->avctx, AV_LOG_INFO, "Internal Error: scan table blocks must be 16-byte aligned "
|
2002-11-02 11:28:08 +00:00
|
|
|
"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))
|
|
|
|
{
|
2004-04-16 12:47:37 +00:00
|
|
|
#if 0 /* seems to cause trouble under some circumstances */
|
2002-11-02 11:28:08 +00:00
|
|
|
s->dct_quantize = dct_quantize_altivec;
|
2004-04-16 12:47:37 +00:00
|
|
|
#endif
|
2003-12-15 09:21:28 +00:00
|
|
|
s->dct_unquantize_h263_intra = dct_unquantize_h263_altivec;
|
|
|
|
s->dct_unquantize_h263_inter = dct_unquantize_h263_altivec;
|
2002-11-02 11:28:08 +00:00
|
|
|
}
|
|
|
|
} else
|
|
|
|
#endif
|
|
|
|
{
|
|
|
|
/* Non-AltiVec PPC optimisations here */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|