mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-26 02:00:33 +00:00
typefinding: set framed=false on DTS caps
This commit is contained in:
parent
ba76490dd4
commit
adb84c6dae
1 changed files with 3 additions and 2 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue