Mercurial > libavcodec.hg
changeset 1942:9241d99f7443 libavcodec
forgotten copyright & dct_quantize_altivec disabled patch by (Romain Dolbeau <dolbeau at irisa dot fr>)
author | michael |
---|---|
date | Fri, 16 Apr 2004 12:47:37 +0000 |
parents | 81a1a5be13aa |
children | 62beeb1a8676 |
files | ppc/mpegvideo_altivec.c ppc/mpegvideo_ppc.c |
diffstat | 2 files changed, 5 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- 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 <romain@dolbeau.org> + * * 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
--- 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; }