From 085d7e20bdd5a0fac8b07ceb0d96b31600bf3163 Mon Sep 17 00:00:00 2001 From: David Schleef Date: Sun, 14 Mar 2010 19:10:16 -0700 Subject: [PATCH] theoradec: add color-matrix to caps --- ext/theora/gsttheoradec.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ext/theora/gsttheoradec.c b/ext/theora/gsttheoradec.c index 7ec3e9205e..9387635f5b 100644 --- a/ext/theora/gsttheoradec.c +++ b/ext/theora/gsttheoradec.c @@ -833,7 +833,8 @@ theora_handle_type_packet (GstTheoraDec * dec, ogg_packet * packet) "framerate", GST_TYPE_FRACTION, dec->info.fps_numerator, dec->info.fps_denominator, "pixel-aspect-ratio", GST_TYPE_FRACTION, par_num, par_den, - "width", G_TYPE_INT, dec->width, "height", G_TYPE_INT, dec->height, NULL); + "width", G_TYPE_INT, dec->width, "height", G_TYPE_INT, dec->height, + "color-matrix", G_TYPE_STRING, "sdtv", NULL); gst_pad_set_caps (dec->srcpad, caps); gst_caps_unref (caps);