From 2549c2bc00d14e2d564f9d1c78050cd7464f28af Mon Sep 17 00:00:00 2001
From: Michael Niedermayer <michaelni@gmx.at>
Date: Thu, 9 Oct 2003 23:45:04 +0000
Subject: [PATCH] 10l

Originally committed as revision 11071 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
---
 postproc/rgb2rgb.h | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/postproc/rgb2rgb.h b/postproc/rgb2rgb.h
index e604d294bd4..78d43d2a01f 100644
--- a/postproc/rgb2rgb.h
+++ b/postproc/rgb2rgb.h
@@ -87,6 +87,15 @@ extern void (*yuy2toyv12)(const uint8_t *src, uint8_t *ydst, uint8_t *udst, uint
 	unsigned int width, unsigned int height,
 	int lumStride, int chromStride, int srcStride);
 
+/**
+ *
+ * height should be a multiple of 2 and width should be a multiple of 16 (if this is a
+ * problem for anyone then tell me, and ill fix it)
+ */
+extern void (*yv12touyvy)(const uint8_t *ysrc, const uint8_t *usrc, const uint8_t *vsrc, uint8_t *dst,
+	unsigned int width, unsigned int height,
+	int lumStride, int chromStride, int dstStride);
+
 /**
  *
  * height should be a multiple of 2 and width should be a multiple of 2 (if this is a
-- 
GitLab