diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/xine-engine/buffer.h | 3 | ||||
-rw-r--r-- | src/xine-engine/buffer_types.c | 11 |
2 files changed, 12 insertions, 2 deletions
diff --git a/src/xine-engine/buffer.h b/src/xine-engine/buffer.h index a298fa50d..55f00e3d8 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.81 2002/11/28 18:49:10 tmmm Exp $ + * $Id: buffer.h,v 1.82 2002/12/01 17:04:30 tmmm Exp $ * * * contents: @@ -134,6 +134,7 @@ extern "C" { #define BUF_VIDEO_RV20 0x02330000 #define BUF_VIDEO_RV30 0x02340000 #define BUF_VIDEO_MVI2 0x02350000 +#define BUF_VIDEO_UCOD 0x02360000 /* 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 fab63ef37..ee5f0132b 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.47 2002/11/28 18:49:10 tmmm Exp $ + * $Id: buffer_types.c,v 1.48 2002/12/01 17:04:30 tmmm Exp $ * * * contents: @@ -484,6 +484,15 @@ static video_db_t video_db[] = { BUF_VIDEO_MVI2, "Motion Pixels" }, +{ + { + meFOURCC('u', 'c', 'o', 'd'), + meFOURCC('U', 'C', 'O', 'D'), + 0 + }, + BUF_VIDEO_UCOD, + "ClearVideo" +}, { { 0 }, 0, "last entry" } }; |