summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGuenter Bartsch <guenter@users.sourceforge.net>2002-04-20 15:00:27 +0000
committerGuenter Bartsch <guenter@users.sourceforge.net>2002-04-20 15:00:27 +0000
commit9470e377b7c100286bdbd8dc1fcfff3ac5b84188 (patch)
tree764b7e9aee52cab5c729e0a8d62c518d220f9228 /src
parent0f82f5f4e1bd668322fd575c9824145e105e0b02 (diff)
downloadxine-lib-9470e377b7c100286bdbd8dc1fcfff3ac5b84188.tar.gz
xine-lib-9470e377b7c100286bdbd8dc1fcfff3ac5b84188.tar.bz2
added cyuv format code
CVS patchset: 1746 CVS date: 2002/04/20 15:00:27
Diffstat (limited to 'src')
-rw-r--r--src/xine-engine/buffer.h3
-rw-r--r--src/xine-engine/buffer_types.c10
2 files changed, 11 insertions, 2 deletions
diff --git a/src/xine-engine/buffer.h b/src/xine-engine/buffer.h
index 0b819494f..b3be8a5a3 100644
--- a/src/xine-engine/buffer.h
+++ b/src/xine-engine/buffer.h
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: buffer.h,v 1.40 2002/04/16 12:27:20 jcdutton Exp $
+ * $Id: buffer.h,v 1.41 2002/04/20 15:00:27 guenter Exp $
*
*
* contents:
@@ -101,6 +101,7 @@ extern "C" {
#define BUF_VIDEO_VP31 0x02180000
#define BUF_VIDEO_H263 0x02190000
#define BUF_VIDEO_3IVX 0x021A0000
+#define BUF_VIDEO_CYUV 0x021B0000
/* audio buffer types: (please keep in sync with buffer_types.c) */
diff --git a/src/xine-engine/buffer_types.c b/src/xine-engine/buffer_types.c
index f72fd7e39..5deaf5bb6 100644
--- a/src/xine-engine/buffer_types.c
+++ b/src/xine-engine/buffer_types.c
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: buffer_types.c,v 1.14 2002/04/19 02:19:11 miguelfreitas Exp $
+ * $Id: buffer_types.c,v 1.15 2002/04/20 15:00:27 guenter Exp $
*
*
* contents:
@@ -310,6 +310,14 @@ static video_db_t video_db[] = {
BUF_VIDEO_H263,
"H263 format"
},
+{
+ {
+ mmioFOURCC('c', 'y', 'u', 'v'),
+ 0
+ },
+ BUF_VIDEO_CYUV,
+ "cyuv format"
+},
{ { 0 }, 0, "last entry" }
};