diff options
author | Mike Melanson <mike@multimedia.cx> | 2002-09-01 21:14:12 +0000 |
---|---|---|
committer | Mike Melanson <mike@multimedia.cx> | 2002-09-01 21:14:12 +0000 |
commit | a5cc6d28e9c5b06e4b60101318477be2ff942e42 (patch) | |
tree | 9157b208e01f3d50c59238bf84763d65f887292d | |
parent | 3eb76f03411e59b2e87cf0667c742f7745883fe0 (diff) | |
download | xine-lib-a5cc6d28e9c5b06e4b60101318477be2ff942e42.tar.gz xine-lib-a5cc6d28e9c5b06e4b60101318477be2ff942e42.tar.bz2 |
add buffer type for WC3 video; update WC4 video buffer type
CVS patchset: 2584
CVS date: 2002/09/01 21:14:12
-rw-r--r-- | src/xine-engine/buffer.h | 3 | ||||
-rw-r--r-- | src/xine-engine/buffer_types.c | 6 |
2 files changed, 6 insertions, 3 deletions
diff --git a/src/xine-engine/buffer.h b/src/xine-engine/buffer.h index 0c41f4748..702f1cfa9 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.67 2002/09/01 04:24:35 tmmm Exp $ + * $Id: buffer.h,v 1.68 2002/09/01 21:14:12 tmmm Exp $ * * * contents: @@ -126,6 +126,7 @@ extern "C" { #define BUF_VIDEO_VQA 0x022D0000 #define BUF_VIDEO_GREY 0x022E0000 #define BUF_VIDEO_XXAN 0x022F0000 +#define BUF_VIDEO_WC3 0x02300000 /* 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 b479db331..21e49fbaa 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.40 2002/09/01 04:24:35 tmmm Exp $ + * $Id: buffer_types.c,v 1.41 2002/09/01 21:14:12 tmmm Exp $ * * * contents: @@ -458,10 +458,12 @@ static video_db_t video_db[] = { { { meFOURCC('X', 'x', 'a', 'n'), + meFOURCC('X', 'X', 'A', 'N'), + meFOURCC('x', 'x', 'a', 'n'), 0 }, BUF_VIDEO_XXAN, - "Blue Mu Productions Codec (?)" + "Wing Commander IV Video Codec" }, { { 0 }, 0, "last entry" } }; |