summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim.muller@collabora.co.uk>2011-01-13 13:59:41 +0000
committerTim-Philipp Müller <tim.muller@collabora.co.uk>2011-01-13 13:59:41 +0000
commitadb84c6dae9485b712685ea014b96f21250e1fbf (patch)
tree6baaac9fc71aef47c3ea2d5e08449fbc106ee56f
parentba76490dd4224d4e03a2830bb93707c983ecb33e (diff)
typefinding: set framed=false on DTS caps
-rw-r--r--gst/typefind/gsttypefindfunctions.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/gst/typefind/gsttypefindfunctions.c b/gst/typefind/gsttypefindfunctions.c
index 66a5275d6..373df083d 100644
--- a/gst/typefind/gsttypefindfunctions.c
+++ b/gst/typefind/gsttypefindfunctions.c
@@ -1432,10 +1432,11 @@ dts_type_find (GstTypeFind * tf, gpointer unused)
if (chans > 0) {
gst_type_find_suggest_simple (tf, prob, "audio/x-dts",
- "rate", G_TYPE_INT, rate, "channels", G_TYPE_INT, chans, NULL);
+ "rate", G_TYPE_INT, rate, "channels", G_TYPE_INT, chans,
+ "framed", G_TYPE_BOOLEAN, FALSE, NULL);
} else {
gst_type_find_suggest_simple (tf, prob, "audio/x-dts",
- "rate", G_TYPE_INT, rate, NULL);
+ "rate", G_TYPE_INT, rate, "framed", G_TYPE_BOOLEAN, FALSE, NULL);
}
return;