mirror of
https://github.com/librempeg/librempeg
synced 2024-11-22 09:02:20 +00:00
swscale/swscale: fix srcStride/srcSlice typo
Fixes part of Ticket3466 Found by: Andrey_Karpov / PVS-Studio Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
79d82a6574
commit
14fa7fc6a8
@ -929,7 +929,7 @@ int attribute_align_arg sws_scale(struct SwsContext *c,
|
|||||||
uint8_t *dst2[4];
|
uint8_t *dst2[4];
|
||||||
uint8_t *rgb0_tmp = NULL;
|
uint8_t *rgb0_tmp = NULL;
|
||||||
|
|
||||||
if (!srcSlice || !dstStride || !dst || !srcSlice) {
|
if (!srcStride || !dstStride || !dst || !srcSlice) {
|
||||||
av_log(c, AV_LOG_ERROR, "One of the input parameters to sws_scale() is NULL, please check the calling code\n");
|
av_log(c, AV_LOG_ERROR, "One of the input parameters to sws_scale() is NULL, please check the calling code\n");
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user