Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
G
gst-plugins-base
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
George Kiagiadakis
gst-plugins-base
Commits
7f9aac38
Commit
7f9aac38
authored
May 10, 2014
by
Thibault Saunier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
pango: Do not try to add a feature to a caps features ANY
It does not makes sense and asserts
parent
3f68f522
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
ext/pango/gstbasetextoverlay.c
ext/pango/gstbasetextoverlay.c
+4
-1
No files found.
ext/pango/gstbasetextoverlay.c
View file @
7f9aac38
...
...
@@ -1095,7 +1095,10 @@ gst_base_text_overlay_add_feature_and_intersect (GstCaps * caps,
caps_size
=
gst_caps_get_size
(
new_caps
);
for
(
i
=
0
;
i
<
caps_size
;
i
++
)
{
GstCapsFeatures
*
features
=
gst_caps_get_features
(
new_caps
,
i
);
gst_caps_features_add
(
features
,
feature
);
if
(
!
gst_caps_features_is_any
(
features
))
{
gst_caps_features_add
(
features
,
feature
);
}
}
gst_caps_append
(
new_caps
,
gst_caps_intersect_full
(
caps
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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