diff options
author | Mike Melanson <mike@multimedia.cx> | 2002-11-28 18:49:10 +0000 |
---|---|---|
committer | Mike Melanson <mike@multimedia.cx> | 2002-11-28 18:49:10 +0000 |
commit | eaf8df21d5d84979719d2df1808740cdb5c664d6 (patch) | |
tree | 38c4a479efdf4d4a53b477fbbe9b0d07abf5b29c | |
parent | b1a9c195ac2dda2c04feae8cc9dec99688a28a91 (diff) | |
download | xine-lib-eaf8df21d5d84979719d2df1808740cdb5c664d6.tar.gz xine-lib-eaf8df21d5d84979719d2df1808740cdb5c664d6.tar.bz2 |
yep, more codec types
CVS patchset: 3388
CVS date: 2002/11/28 18:49:10
-rw-r--r-- | src/xine-engine/buffer.h | 3 | ||||
-rw-r--r-- | src/xine-engine/buffer_types.c | 12 |
2 files changed, 13 insertions, 2 deletions
diff --git a/src/xine-engine/buffer.h b/src/xine-engine/buffer.h index 4dc34bd45..a298fa50d 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.80 2002/11/28 10:21:08 petli Exp $ + * $Id: buffer.h,v 1.81 2002/11/28 18:49:10 tmmm Exp $ * * * contents: @@ -133,6 +133,7 @@ extern "C" { #define BUF_VIDEO_SEGA 0x02320000 #define BUF_VIDEO_RV20 0x02330000 #define BUF_VIDEO_RV30 0x02340000 +#define BUF_VIDEO_MVI2 0x02350000 /* 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 c86b0f47f..fab63ef37 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.46 2002/10/31 05:23:02 tmmm Exp $ + * $Id: buffer_types.c,v 1.47 2002/11/28 18:49:10 tmmm Exp $ * * * contents: @@ -173,6 +173,7 @@ static video_db_t video_db[] = { meFOURCC('d', 'i', 'v', '6'), meFOURCC('A', 'P', '4', '1'), meFOURCC('M', 'P', 'G', '3'), + meFOURCC('C', 'O', 'L', '1'), 0 }, BUF_VIDEO_MSMPEG4_V3, @@ -474,6 +475,15 @@ static video_db_t video_db[] = { BUF_VIDEO_SEGA, "Cinepak for Sega" }, +{ + { + meFOURCC('m', 'v', 'i', '2'), + meFOURCC('M', 'V', 'I', '2'), + 0 + }, + BUF_VIDEO_MVI2, + "Motion Pixels" +}, { { 0 }, 0, "last entry" } }; |