summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Schleef <ds@schleef.org>2010-08-26 22:03:20 -0700
committerDavid Schleef <ds@schleef.org>2010-09-04 11:22:26 -0700
commit7d28505c4ee670861cbe0374a52a3aa24d2690ce (patch)
tree69e47a417d340b856e7309b1e83eb28036d2ad19
parent239bcffa568df315ef3cc7cff3f3240f4548f4b8 (diff)
sdlvideosink: Re-enable YVYU and UYVY
YVYU on my machine appears to be doing software conversion (and doing it incorrectly).
-rw-r--r--ext/sdl/sdlvideosink.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/ext/sdl/sdlvideosink.c b/ext/sdl/sdlvideosink.c
index e4b81fafe..7932ecf06 100644
--- a/ext/sdl/sdlvideosink.c
+++ b/ext/sdl/sdlvideosink.c
@@ -131,11 +131,9 @@ gst_sdlvideosink_base_init (gpointer g_class)
guint32 formats[] = {
GST_MAKE_FOURCC ('I', '4', '2', '0'),
GST_MAKE_FOURCC ('Y', 'V', '1', '2'),
- GST_MAKE_FOURCC ('Y', 'U', 'Y', '2')
- /*
- GST_MAKE_FOURCC ('Y', 'V', 'Y', 'U'),
- GST_MAKE_FOURCC ('U', 'Y', 'V', 'Y')
- */
+ GST_MAKE_FOURCC ('Y', 'U', 'Y', '2'),
+ GST_MAKE_FOURCC ('Y', 'V', 'Y', 'U'),
+ GST_MAKE_FOURCC ('U', 'Y', 'V', 'Y')
};
/* make a list of all available caps */