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:
parent
d76ae08048
commit
4505257372
1 changed files with 1 additions and 1 deletions
|
|
@ -1033,7 +1033,7 @@ static int encode_frame(AVCodecContext *avctx, AVPacket *pkt,
|
|||
|
||||
// slices
|
||||
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);
|
||||
if (ret)
|
||||
return ret;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue