Skip to content
Snippets Groups Projects
Commit 0d35413e authored by Paul B Mahol's avatar Paul B Mahol
Browse files

avcodec/dnxhdenc: do not free nonexistent slice threads data when frame threading is used


Forgotten in 28e9ba95.
Fixes #7241.

Signed-off-by: default avatarPaul B Mahol <onemda@gmail.com>
parent 04b57081
No related branches found
No related tags found
No related merge requests found
...@@ -1369,8 +1369,10 @@ static av_cold int dnxhd_encode_end(AVCodecContext *avctx) ...@@ -1369,8 +1369,10 @@ static av_cold int dnxhd_encode_end(AVCodecContext *avctx)
av_freep(&ctx->qmatrix_c16); av_freep(&ctx->qmatrix_c16);
av_freep(&ctx->qmatrix_l16); av_freep(&ctx->qmatrix_l16);
for (i = 1; i < avctx->thread_count; i++) if (avctx->active_thread_type == FF_THREAD_SLICE) {
av_freep(&ctx->thread[i]); for (i = 1; i < avctx->thread_count; i++)
av_freep(&ctx->thread[i]);
}
return 0; return 0;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment