diff ppc/mpegvideo_ppc.c @ 1001:95cbffdc98a9 libavcodec

dct_unquantize_h263_altivec by (Romain Dolbeau <dolbeaur at club-internet dot fr>)
author michaelni
date Sun, 12 Jan 2003 13:29:24 +0000
parents 5c4cefa5d068
children 3b7cc8e4b83f
line wrap: on
line diff
--- a/ppc/mpegvideo_ppc.c	Sun Jan 12 13:13:52 2003 +0000
+++ b/ppc/mpegvideo_ppc.c	Sun Jan 12 13:29:24 2003 +0000
@@ -27,6 +27,8 @@
 extern int dct_quantize_altivec(MpegEncContext *s,  
         DCTELEM *block, int n,
         int qscale, int *overflow);
+extern void dct_unquantize_h263_altivec(MpegEncContext *s,
+                                        DCTELEM *block, int n, int qscale);
 
 extern void idct_put_altivec(UINT8 *dest, int line_size, INT16 *block);
 extern void idct_add_altivec(UINT8 *dest, int line_size, INT16 *block);
@@ -66,6 +68,7 @@
                 (s->avctx->dct_algo == FF_DCT_ALTIVEC))
         {
             s->dct_quantize = dct_quantize_altivec;
+            s->dct_unquantize_h263 = dct_unquantize_h263_altivec;
         }
     } else
 #endif