changeset 3969:c4c3f32dae47

integrated Tim Ferguson's native CYUV decoder
author melanson
date Fri, 04 Jan 2002 05:57:00 +0000
parents 3bbaeba57939
children 652d8625c299
files Makefile codec-cfg.c codec-cfg.h cyuv.c dec_video.c etc/codecs.conf
diffstat 6 files changed, 125 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/Makefile	Thu Jan 03 23:14:13 2002 +0000
+++ b/Makefile	Fri Jan 04 05:57:00 2002 +0000
@@ -22,7 +22,7 @@
 # a BSD compatible 'install' program
 INSTALL = install
 
-SRCS_COMMON = adpcm.c xacodec.c cpudetect.c mp_msg.c ac3-iec958.c dec_audio.c dec_video.c msvidc.c cinepak.c fli.c qtrle.c codec-cfg.c cfgparser.c my_profile.c RTjpegN.c minilzo.c nuppelvideo.c
+SRCS_COMMON = cyuv.c adpcm.c xacodec.c cpudetect.c mp_msg.c ac3-iec958.c dec_audio.c dec_video.c msvidc.c cinepak.c fli.c qtrle.c codec-cfg.c cfgparser.c my_profile.c RTjpegN.c minilzo.c nuppelvideo.c
 SRCS_MENCODER = mencoder.c $(SRCS_COMMON) libao2/afmt.c divx4_vbr.c libvo/aclib.c libvo/img_format.c
 SRCS_MPLAYER = mplayer.c $(SRCS_COMMON) find_sub.c subreader.c lirc_mp.c mixer.c spudec.c
 
--- a/codec-cfg.c	Thu Jan 03 23:14:13 2002 +0000
+++ b/codec-cfg.c	Fri Jan 04 05:57:00 2002 +0000
@@ -240,6 +240,7 @@
 		"cinepak",
 		"qtrle",
 		"nuv",
+		"cyuv",
 		NULL
 	};
         char **drv=audioflag?audiodrv:videodrv;
--- a/codec-cfg.h	Thu Jan 03 23:14:13 2002 +0000
+++ b/codec-cfg.h	Fri Jan 04 05:57:00 2002 +0000
@@ -52,6 +52,7 @@
 #define VFM_CINEPAK 13
 #define VFM_QTRLE 14
 #define VFM_NUV 15
+#define VFM_CYUV 16
 
 #ifndef GUID_TYPE
 #define GUID_TYPE
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/cyuv.c	Fri Jan 04 05:57:00 2002 +0000
@@ -0,0 +1,85 @@
+/* ------------------------------------------------------------------------
+ * Creative YUV Video Decoder
+ *
+ * Dr. Tim Ferguson, 2001.
+ * For more details on the algorithm:
+ *         http://www.csse.monash.edu.au/~timf/videocodec.html
+ *
+ * This is a very simple predictive coder.  A video frame is coded in YUV411
+ * format.  The first pixel of each scanline is coded using the upper four
+ * bits of its absolute value.  Subsequent pixels for the scanline are coded
+ * using the difference between the last pixel and the current pixel (DPCM).
+ * The DPCM values are coded using a 16 entry table found at the start of the
+ * frame.  Thus four bits per component are used and are as follows:
+ *     UY VY YY UY VY YY UY VY...
+ * This code assumes the frame width will be a multiple of four pixels.  This
+ * should probably be fixed.
+ * ------------------------------------------------------------------------ */
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+#include <sys/types.h>
+#include <unistd.h>
+
+/* ------------------------------------------------------------------------
+ * This function decodes a buffer containing a CYUV encoded frame.
+ *
+ * buf - the input buffer to be decoded
+ * size - the size of the input buffer
+ * frame - the output frame buffer (UYVY format)
+ * width - the width of the output frame
+ * height - the height of the output frame
+ * bit_per_pixel - ignored for now: may be used later for conversions.
+ */
+void decode_cyuv(unsigned char *buf, int size, unsigned char *frame, int width, int height, int bit_per_pixel)
+{
+int i, xpos, ypos, cur_Y = 0, cur_U = 0, cur_V = 0;
+char *delta_y_tbl, *delta_c_tbl, *ptr;
+
+	delta_y_tbl = buf + 16;
+	delta_c_tbl = buf + 32;
+	ptr = buf + (16 * 3);
+
+	for(ypos = 0; ypos < height; ypos++)
+		for(xpos = 0; xpos < width; xpos += 4)
+			{
+			if(xpos == 0)		/* first pixels in scanline */
+				{
+				cur_U = *(ptr++);
+				cur_Y = (cur_U & 0x0f) << 4;
+				cur_U = cur_U & 0xf0;
+				*frame++ = cur_U;
+				*frame++ = cur_Y;
+
+				cur_V = *(ptr++);
+				cur_Y = (cur_Y + delta_y_tbl[cur_V & 0x0f]) & 0xff;
+				cur_V = cur_V & 0xf0;
+				*frame++ = cur_V;
+				*frame++ = cur_Y;
+				}
+			else			/* subsequent pixels in scanline */
+				{
+				i = *(ptr++);
+				cur_U = (cur_U + delta_c_tbl[i >> 4]) & 0xff;
+				cur_Y = (cur_Y + delta_y_tbl[i & 0x0f]) & 0xff;
+				*frame++ = cur_U;
+				*frame++ = cur_Y;
+
+				i = *(ptr++);
+				cur_V = (cur_V + delta_c_tbl[i >> 4]) & 0xff;
+				cur_Y = (cur_Y + delta_y_tbl[i & 0x0f]) & 0xff;
+				*frame++ = cur_V;
+				*frame++ = cur_Y;
+				}
+
+			i = *(ptr++);
+			cur_Y = (cur_Y + delta_y_tbl[i & 0x0f]) & 0xff;
+			*frame++ = cur_U;
+			*frame++ = cur_Y;
+
+			cur_Y = (cur_Y + delta_y_tbl[i >> 4]) & 0xff;
+			*frame++ = cur_V;
+			*frame++ = cur_Y;
+			}
+}
+
--- a/dec_video.c	Thu Jan 03 23:14:13 2002 +0000
+++ b/dec_video.c	Fri Jan 04 05:57:00 2002 +0000
@@ -135,6 +135,25 @@
   int width,
   int height);
 
+void *decode_cinepak_init(void);
+
+void decode_cinepak(
+  void *context,
+  unsigned char *buf,
+  int size,
+  unsigned char *frame,
+  int width,
+  int height,
+  int bit_per_pixel);
+
+void decode_cyuv(
+  unsigned char *buf,
+  int size,
+  unsigned char *frame,
+  int width,
+  int height,
+  int bit_per_pixel);
+
 //**************************************************************************//
 //             The OpenDivX stuff:
 //**************************************************************************//
@@ -558,6 +577,12 @@
  case VFM_NUV:
     sh_video->our_out_buffer = (char *)memalign(64, sh_video->disp_w*sh_video->disp_h*3/2);
    break;
+ case VFM_CYUV: {
+   int bpp=((out_fmt&255)+7)/8;
+   sh_video->our_out_buffer =
+     (char*)memalign(64, sh_video->disp_w*sh_video->disp_h*3);
+   break;
+   }
  }
 }
   sh_video->inited=1;
@@ -831,6 +856,11 @@
         ((out_fmt&255)+7)/8);
     blit_frame = 3;
     break;
+ case VFM_CYUV:
+   decode_cyuv(start, in_size, sh_video->our_out_buffer,
+      sh_video->disp_w, sh_video->disp_h, (out_fmt==IMGFMT_YUY2)?16:(out_fmt&255));
+   blit_frame = 3;
+   break;
 } // switch
 //------------------------ frame decoded. --------------------
 
--- a/etc/codecs.conf	Thu Jan 03 23:14:13 2002 +0000
+++ b/etc/codecs.conf	Fri Jan 04 05:57:00 2002 +0000
@@ -318,6 +318,13 @@
   driver nuv
   out I420
 
+videocodec cyuv
+  info "Creative YUV (native codec)"
+  status working
+  fourcc cyuv,CYUV
+  driver cyuv
+  out UYVY
+
 audiocodec imaadpcm
   info "IMA ADPCM"
   status working