mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
qsvenc: support passing arbitrary external buffers to the encoder
This commit is contained in:
parent
68e00ad66d
commit
772c87c5a6
@ -134,10 +134,7 @@ static int init_video_param(AVCodecContext *avctx, QSVEncContext *q)
|
||||
q->extco.CAVLC = avctx->coder_type == FF_CODER_TYPE_VLC ?
|
||||
MFX_CODINGOPTION_ON : MFX_CODINGOPTION_UNKNOWN;
|
||||
|
||||
q->extparam[0] = (mfxExtBuffer *)&q->extco;
|
||||
|
||||
q->param.ExtParam = q->extparam;
|
||||
q->param.NumExtParam = FF_ARRAY_ELEMS(q->extparam);
|
||||
q->extparam_internal[0] = (mfxExtBuffer *)&q->extco;
|
||||
}
|
||||
|
||||
return 0;
|
||||
@ -228,6 +225,35 @@ int ff_qsv_enc_init(AVCodecContext *avctx, QSVEncContext *q)
|
||||
return ff_qsv_error(ret);
|
||||
}
|
||||
|
||||
if (avctx->hwaccel_context) {
|
||||
AVQSVContext *qsv = avctx->hwaccel_context;
|
||||
int i, j;
|
||||
|
||||
q->extparam = av_mallocz_array(qsv->nb_ext_buffers + FF_ARRAY_ELEMS(q->extparam_internal),
|
||||
sizeof(*q->extparam));
|
||||
if (!q->extparam)
|
||||
return AVERROR(ENOMEM);
|
||||
|
||||
q->param.ExtParam = q->extparam;
|
||||
for (i = 0; i < qsv->nb_ext_buffers; i++)
|
||||
q->param.ExtParam[i] = qsv->ext_buffers[i];
|
||||
q->param.NumExtParam = qsv->nb_ext_buffers;
|
||||
|
||||
for (i = 0; i < FF_ARRAY_ELEMS(q->extparam_internal); i++) {
|
||||
for (j = 0; j < qsv->nb_ext_buffers; j++) {
|
||||
if (qsv->ext_buffers[j]->BufferId == q->extparam_internal[i]->BufferId)
|
||||
break;
|
||||
}
|
||||
if (j < qsv->nb_ext_buffers)
|
||||
continue;
|
||||
|
||||
q->param.ExtParam[q->param.NumExtParam++] = q->extparam_internal[i];
|
||||
}
|
||||
} else {
|
||||
q->param.ExtParam = q->extparam_internal;
|
||||
q->param.NumExtParam = FF_ARRAY_ELEMS(q->extparam_internal);
|
||||
}
|
||||
|
||||
ret = MFXVideoENCODE_Init(q->session, &q->param);
|
||||
if (ret < 0) {
|
||||
av_log(avctx, AV_LOG_ERROR, "Error initializing the encoder\n");
|
||||
@ -512,5 +538,7 @@ int ff_qsv_enc_close(AVCodecContext *avctx, QSVEncContext *q)
|
||||
av_fifo_free(q->async_fifo);
|
||||
q->async_fifo = NULL;
|
||||
|
||||
av_freep(&q->extparam);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
@ -49,7 +49,8 @@ typedef struct QSVEncContext {
|
||||
mfxFrameAllocRequest req;
|
||||
|
||||
mfxExtCodingOption extco;
|
||||
mfxExtBuffer *extparam[1];
|
||||
mfxExtBuffer *extparam_internal[1];
|
||||
mfxExtBuffer **extparam;
|
||||
|
||||
AVFifoBuffer *async_fifo;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user