mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 03:35:21 +00:00
framepositionner: Fix wrong old size check condition
CID: 1461277
This commit is contained in:
parent
69d5202788
commit
6db3dc1661
1 changed files with 1 additions and 1 deletions
|
@ -263,7 +263,7 @@ gst_frame_positioner_update_properties (GstFramePositioner * pos,
|
|||
} else if (auto_position (pos))
|
||||
goto done;
|
||||
|
||||
if (!old_track_height || !old_track_height) {
|
||||
if (!old_track_height || !old_track_width) {
|
||||
GST_DEBUG_OBJECT (pos, "No old track size, can not properly reposition");
|
||||
goto done;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue