mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-02-04 06:08:26 +02:00
forgotten copyright & dct_quantize_altivec disabled patch by (Romain Dolbeau <dolbeau at irisa dot fr>)
Originally committed as revision 3023 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
0abd691683
commit
a194762450
@ -1,6 +1,9 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (c) 2002 Dieter Shirley
|
* Copyright (c) 2002 Dieter Shirley
|
||||||
*
|
*
|
||||||
|
* dct_unquantize_h263_altivec:
|
||||||
|
* Copyright (c) 2003 Romain Dolbeau <romain@dolbeau.org>
|
||||||
|
*
|
||||||
* This library is free software; you can redistribute it and/or
|
* This library is free software; you can redistribute it and/or
|
||||||
* modify it under the terms of the GNU Lesser General Public
|
* modify it under the terms of the GNU Lesser General Public
|
||||||
* License as published by the Free Software Foundation; either
|
* License as published by the Free Software Foundation; either
|
||||||
|
@ -71,7 +71,9 @@ void MPV_common_init_ppc(MpegEncContext *s)
|
|||||||
if ((s->avctx->dct_algo == FF_DCT_AUTO) ||
|
if ((s->avctx->dct_algo == FF_DCT_AUTO) ||
|
||||||
(s->avctx->dct_algo == FF_DCT_ALTIVEC))
|
(s->avctx->dct_algo == FF_DCT_ALTIVEC))
|
||||||
{
|
{
|
||||||
|
#if 0 /* seems to cause trouble under some circumstances */
|
||||||
s->dct_quantize = dct_quantize_altivec;
|
s->dct_quantize = dct_quantize_altivec;
|
||||||
|
#endif
|
||||||
s->dct_unquantize_h263_intra = dct_unquantize_h263_altivec;
|
s->dct_unquantize_h263_intra = dct_unquantize_h263_altivec;
|
||||||
s->dct_unquantize_h263_inter = dct_unquantize_h263_altivec;
|
s->dct_unquantize_h263_inter = dct_unquantize_h263_altivec;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user