mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 07:47:17 +00:00
compositor: fix compiler warning due to c99-ism
This commit is contained in:
parent
b233911684
commit
ff0f659ca5
1 changed files with 3 additions and 1 deletions
|
@ -844,6 +844,8 @@ _should_draw_background (GstVideoAggregator * vagg, gboolean bg_transparent)
|
|||
{
|
||||
GstVideoRectangle bg_rect;
|
||||
gboolean draw = TRUE;
|
||||
GList *l;
|
||||
|
||||
bg_rect.x = bg_rect.y = 0;
|
||||
|
||||
GST_OBJECT_LOCK (vagg);
|
||||
|
@ -851,7 +853,7 @@ _should_draw_background (GstVideoAggregator * vagg, gboolean bg_transparent)
|
|||
bg_rect.h = GST_VIDEO_INFO_HEIGHT (&vagg->info);
|
||||
/* Check if the background is completely obscured by a pad
|
||||
* TODO: Also skip if it's obscured by a combination of pads */
|
||||
for (GList * l = GST_ELEMENT (vagg)->sinkpads; l; l = l->next) {
|
||||
for (l = GST_ELEMENT (vagg)->sinkpads; l; l = l->next) {
|
||||
if (_pad_obscures_rectangle (vagg, l->data, bg_rect, bg_transparent)) {
|
||||
draw = FALSE;
|
||||
break;
|
||||
|
|
Loading…
Reference in a new issue