# HG changeset patch # User michael # Date 1082119657 0 # Node ID 9241d99f744324773519b62f981dd2e03469ebd4 # Parent 81a1a5be13aa9df22d03aafe960940070efb3fb2 forgotten copyright & dct_quantize_altivec disabled patch by (Romain Dolbeau ) diff -r 81a1a5be13aa -r 9241d99f7443 ppc/mpegvideo_altivec.c --- a/ppc/mpegvideo_altivec.c Fri Apr 16 01:48:05 2004 +0000 +++ b/ppc/mpegvideo_altivec.c Fri Apr 16 12:47:37 2004 +0000 @@ -1,6 +1,9 @@ /* * Copyright (c) 2002 Dieter Shirley * + * dct_unquantize_h263_altivec: + * Copyright (c) 2003 Romain Dolbeau + * * 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 diff -r 81a1a5be13aa -r 9241d99f7443 ppc/mpegvideo_ppc.c --- a/ppc/mpegvideo_ppc.c Fri Apr 16 01:48:05 2004 +0000 +++ b/ppc/mpegvideo_ppc.c Fri Apr 16 12:47:37 2004 +0000 @@ -71,7 +71,9 @@ if ((s->avctx->dct_algo == FF_DCT_AUTO) || (s->avctx->dct_algo == FF_DCT_ALTIVEC)) { +#if 0 /* seems to cause trouble under some circumstances */ s->dct_quantize = dct_quantize_altivec; +#endif s->dct_unquantize_h263_intra = dct_unquantize_h263_altivec; s->dct_unquantize_h263_inter = dct_unquantize_h263_altivec; }