mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-03 13:02:29 +00:00
video-scaler: fix offset check
This commit is contained in:
parent
5c3c42b95d
commit
19cd171035
1 changed files with 1 additions and 1 deletions
|
@ -573,7 +573,7 @@ gst_video_scaler_vertical (GstVideoScaler * scale, GstVideoFormat format,
|
|||
g_return_if_fail (scale != NULL);
|
||||
g_return_if_fail (srcs != NULL);
|
||||
g_return_if_fail (dest != NULL);
|
||||
g_return_if_fail (dest_offset <= scale->resampler.out_size);
|
||||
g_return_if_fail (dest_offset < scale->resampler.out_size);
|
||||
|
||||
switch (scale->resampler.max_taps) {
|
||||
case 1:
|
||||
|
|
Loading…
Reference in a new issue