diff options
author | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2002-01-15 16:02:02 +0000 |
---|---|---|
committer | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2002-01-15 16:02:02 +0000 |
commit | 72098acee3e9fcfa95662f688f3f8257db3ef068 (patch) | |
tree | f6377e1591f7f87124fb1b7af36cfea3a7e986c5 /src/xine-engine | |
parent | c2fab8bca1738d1ac988c488085ff798321f878d (diff) | |
download | xine-lib-72098acee3e9fcfa95662f688f3f8257db3ef068.tar.gz xine-lib-72098acee3e9fcfa95662f688f3f8257db3ef068.tar.bz2 |
small updates, another codec supported (VP31)
CVS patchset: 1408
CVS date: 2002/01/15 16:02:02
Diffstat (limited to 'src/xine-engine')
-rw-r--r-- | src/xine-engine/buffer.h | 3 | ||||
-rw-r--r-- | src/xine-engine/buffer_types.c | 15 |
2 files changed, 16 insertions, 2 deletions
diff --git a/src/xine-engine/buffer.h b/src/xine-engine/buffer.h index a7e42af89..106c19854 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.30 2002/01/12 17:09:34 guenter Exp $ + * $Id: buffer.h,v 1.31 2002/01/15 16:02:03 miguelfreitas Exp $ * * * contents: @@ -99,6 +99,7 @@ extern "C" { #define BUF_VIDEO_MSVC 0x02150000 #define BUF_VIDEO_DV 0x02160000 #define BUF_VIDEO_REAL 0x02170000 +#define BUF_VIDEO_VP31 0x02180000 /* 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 ea770dbae..4e1b86e60 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.7 2002/01/06 00:47:47 guenter Exp $ + * $Id: buffer_types.c,v 1.8 2002/01/15 16:02:03 miguelfreitas Exp $ * * * contents: @@ -124,6 +124,8 @@ static video_db_t video_db[] = { mmioFOURCC('D', 'I', 'V', '6'), mmioFOURCC('d', 'i', 'v', '6'), mmioFOURCC('3', 'I', 'V', '1'), + mmioFOURCC('A', 'P', '4', '1'), + mmioFOURCC('M', 'P', 'G', '3'), 0 }, BUF_VIDEO_MSMPEG4_V3, @@ -279,6 +281,17 @@ static video_db_t video_db[] = { BUF_VIDEO_DV, "Sony Digital Video (DV)" }, +{ + { + mmioFOURCC('V','P','3','0'), + mmioFOURCC('v','p','3','0'), + mmioFOURCC('V','P','3','1'), + mmioFOURCC('v','p','3','1'), + 0 + }, + BUF_VIDEO_VP31, + "On2 VP3.1 Codec" +}, { { 0 }, 0, "last entry" } }; |