You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-10 06:10:52 +02:00
sws: fix:
libswscale/swscale_unscaled.c:915:9: warning: new qualifiers in middle of multi-level non-const cast are unsafe Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
@@ -912,7 +912,7 @@ int sws_scale(struct SwsContext *c, const uint8_t* const srcSlice[],
|
|||||||
dst2[3] += ( c->dstH -1)*dstStride[3];
|
dst2[3] += ( c->dstH -1)*dstStride[3];
|
||||||
|
|
||||||
reset_ptr(src2, c->srcFormat);
|
reset_ptr(src2, c->srcFormat);
|
||||||
reset_ptr((const uint8_t**)dst2, c->dstFormat);
|
reset_ptr((void*)dst2, c->dstFormat);
|
||||||
|
|
||||||
/* reset slice direction at end of frame */
|
/* reset slice direction at end of frame */
|
||||||
if (!srcSliceY)
|
if (!srcSliceY)
|
||||||
|
Reference in New Issue
Block a user