You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-04 22:03:09 +02:00
avcodec/proresenc_kostya: Don't cast const away needlessly
The parameter passed here is unused, so just pass NULL. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
@ -1033,7 +1033,7 @@ static int encode_frame(AVCodecContext *avctx, AVPacket *pkt,
|
|||||||
|
|
||||||
// slices
|
// slices
|
||||||
if (!ctx->force_quant) {
|
if (!ctx->force_quant) {
|
||||||
ret = avctx->execute2(avctx, find_quant_thread, (void*)pic, NULL,
|
ret = avctx->execute2(avctx, find_quant_thread, NULL, NULL,
|
||||||
ctx->mb_height);
|
ctx->mb_height);
|
||||||
if (ret)
|
if (ret)
|
||||||
return ret;
|
return ret;
|
||||||
|
Reference in New Issue
Block a user