diff options
author | James Stembridge <jstembridge@users.sourceforge.net> | 2003-05-28 13:11:53 +0000 |
---|---|---|
committer | James Stembridge <jstembridge@users.sourceforge.net> | 2003-05-28 13:11:53 +0000 |
commit | c74d124aef4ede45cfc1fbff707ceed1cf2012fa (patch) | |
tree | a548a132618d2aaa6caa17bc6fbde20ef2532a93 | |
parent | 5d5348d28507bc5dc86c02755ace1a4d262ff166 (diff) | |
download | xine-lib-c74d124aef4ede45cfc1fbff707ceed1cf2012fa.tar.gz xine-lib-c74d124aef4ede45cfc1fbff707ceed1cf2012fa.tar.bz2 |
buffer type and fourcc's for raw i420 video
CVS patchset: 4973
CVS date: 2003/05/28 13:11:53
-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 dfae2fa94..ebcfbaafd 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.116 2003/05/26 21:06:01 tmmm Exp $ + * $Id: buffer.h,v 1.117 2003/05/28 13:11:53 jstembridge Exp $ * * * contents: @@ -153,6 +153,7 @@ extern "C" { #define BUF_VIDEO_IMAGE 0x023D0000 #define BUF_VIDEO_THEORA 0x023E0000 #define BUF_VIDEO_4XM 0x023F0000 +#define BUF_VIDEO_I420 0x02400000 /* 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 d10746691..74311a3fe 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.64 2003/05/25 13:39:14 guenter Exp $ + * $Id: buffer_types.c,v 1.65 2003/05/28 13:11:53 jstembridge Exp $ * * * contents: @@ -481,6 +481,15 @@ static video_db_t video_db[] = { }, { { + meFOURCC('I', '4', '2', '0'), + meFOURCC('I', 'Y', 'U', 'V'), + 0 + }, + BUF_VIDEO_I420, + "Raw Planar I420" +}, +{ + { meFOURCC('S', 'E', 'G', 'A'), meFOURCC('s', 'e', 'g', 'a'), 0 |