summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Melanson <mike@multimedia.cx>2003-05-31 02:18:01 +0000
committerMike Melanson <mike@multimedia.cx>2003-05-31 02:18:01 +0000
commit3c7fc2862d35e0deead9d3f2859dc4b7c7acacef (patch)
treee2ab2d66937365f69f10337589e890c68a4f5360
parente429aeb680e6fe1646acb1eb68cec0ad68beaf1c (diff)
downloadxine-lib-3c7fc2862d35e0deead9d3f2859dc4b7c7acacef.tar.gz
xine-lib-3c7fc2862d35e0deead9d3f2859dc4b7c7acacef.tar.bz2
added placeholder fourccs for On2 VPx video
CVS patchset: 4990 CVS date: 2003/05/31 02:18:01
-rw-r--r--src/xine-engine/buffer.h5
-rw-r--r--src/xine-engine/buffer_types.c19
2 files changed, 21 insertions, 3 deletions
diff --git a/src/xine-engine/buffer.h b/src/xine-engine/buffer.h
index ebcfbaafd..7f935437e 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.117 2003/05/28 13:11:53 jstembridge Exp $
+ * $Id: buffer.h,v 1.118 2003/05/31 02:18:01 tmmm Exp $
*
*
* contents:
@@ -154,6 +154,9 @@ extern "C" {
#define BUF_VIDEO_THEORA 0x023E0000
#define BUF_VIDEO_4XM 0x023F0000
#define BUF_VIDEO_I420 0x02400000
+#define BUF_VIDEO_VP4 0x02410000
+#define BUF_VIDEO_VP5 0x02420000
+#define BUF_VIDEO_VP6 0x02430000
/* 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 74311a3fe..730b883be 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.65 2003/05/28 13:11:53 jstembridge Exp $
+ * $Id: buffer_types.c,v 1.66 2003/05/31 02:18:01 tmmm Exp $
*
*
* contents:
@@ -570,7 +570,22 @@ static video_db_t video_db[] = {
BUF_VIDEO_THEORA,
"OggTheora Video"
},
-
+{
+ {
+ meFOURCC('V','P','5','0'),
+ 0
+ },
+ BUF_VIDEO_VP5,
+ "On2 VP5 Codec"
+},
+{
+ {
+ meFOURCC('V','P','6','1'),
+ 0
+ },
+ BUF_VIDEO_VP6,
+ "On2 VP6 Codec"
+},
{ { 0 }, 0, "last entry" }
};