Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
George Kiagiadakis
gst-plugins-base
Commits
adb84c6d
Commit
adb84c6d
authored
Jan 13, 2011
by
Tim-Philipp Müller
Browse files
typefinding: set framed=false on DTS caps
parent
ba76490d
Changes
1
Hide whitespace changes
Inline
Side-by-side
gst/typefind/gsttypefindfunctions.c
View file @
adb84c6d
...
...
@@ -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
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment