diff mpegvideo.h @ 325:15efd80cf51e libavcodec

mpeg2/mpeg4 dequantizer support (c & mmx) mpeg1 dequantizer optimizations
author michaelni
date Wed, 17 Apr 2002 16:30:31 +0000
parents 9c6f056f0e41
children d359db02fc90
line wrap: on
line diff
--- a/mpegvideo.h	Wed Apr 17 04:32:12 2002 +0000
+++ b/mpegvideo.h	Wed Apr 17 16:30:31 2002 +0000
@@ -338,7 +338,9 @@
     DCTELEM intra_block[6][64] __align8;
     DCTELEM inter_block[6][64] __align8;
     DCTELEM inter4v_block[6][64] __align8;
-    void (*dct_unquantize_mpeg)(struct MpegEncContext *s, 
+    void (*dct_unquantize_mpeg1)(struct MpegEncContext *s, 
+                           DCTELEM *block, int n, int qscale);
+    void (*dct_unquantize_mpeg2)(struct MpegEncContext *s, 
                            DCTELEM *block, int n, int qscale);
     void (*dct_unquantize_h263)(struct MpegEncContext *s, 
                            DCTELEM *block, int n, int qscale);