]> git.sesse.net Git - vlc/blobdiff - include/video_decoder.h
* Fixed the BeOS compile typo.
[vlc] / include / video_decoder.h
index 4f9e630a8f29bfc3a3256b8f3ae284b823f96779..11c5be774745bb5a288b2d155a3686c18c57e8d5 100644 (file)
@@ -2,6 +2,7 @@
  * video_decoder.h : video decoder thread
  *****************************************************************************
  * Copyright (C) 1999, 2000 VideoLAN
+ * $Id: video_decoder.h,v 1.24 2001/05/30 17:03:11 sam Exp $
  *
  * Authors: Christophe Massiot <massiot@via.ecp.fr>
  *
@@ -53,14 +54,14 @@ typedef struct vdec_thread_s
     /* idct iformations */
     dctelem_t              p_pre_idct[64*64];
 
+    /* Macroblock copy functions */
+    void ( * pf_decode_init ) ( struct vdec_thread_s * );
+    void ( * pf_decode_mb_c ) ( struct vdec_thread_s *, struct macroblock_s * );
+    void ( * pf_decode_mb_bw )( struct vdec_thread_s *, struct macroblock_s * );
+
     /* Input properties */
     struct vpar_thread_s * p_vpar;                    /* video_parser thread */
 
-#ifndef HAVE_MMX
-    /* Lookup tables */
-    u8              pi_crop_buf[VDEC_CROPRANGE];
-    u8 *            pi_crop;
-#endif
 } vdec_thread_t;
 
 /*****************************************************************************