mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-08 13:22:53 +02:00
swscale/swscale_unscaled: Fix packed_16bpc_bswap() with slices
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
89ec11e096
commit
47bc1bdafb
@ -352,6 +352,7 @@ static int packed_16bpc_bswap(SwsContext *c, const uint8_t *src[],
|
||||
int min_stride = FFMIN(FFABS(srcstr), FFABS(dststr));
|
||||
if(!dstPtr || !srcPtr)
|
||||
continue;
|
||||
dstPtr += (srcSliceY >> c->chrDstVSubSample) * dststr;
|
||||
for (i = 0; i < (srcSliceH >> c->chrDstVSubSample); i++) {
|
||||
for (j = 0; j < min_stride; j++) {
|
||||
dstPtr[j] = av_bswap16(srcPtr[j]);
|
||||
|
Loading…
Reference in New Issue
Block a user