mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-01-05 23:00:02 +00:00
avcodec/qsvenc_h264: declare the QSVEncContext variable before using it
Should fix compilation.
Regression introduced by commit 63adb3602d
Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
parent
c3afe64d0c
commit
5f5a97dc3d
@ -43,10 +43,10 @@ typedef struct QSVH264EncContext {
|
||||
static int qsv_h264_set_encode_ctrl(AVCodecContext *avctx,
|
||||
const AVFrame *frame, mfxEncodeCtrl* enc_ctrl)
|
||||
{
|
||||
QSVH264EncContext *qh264 = avctx->priv_data;
|
||||
QSVEncContext *q = &qh264->qsv;
|
||||
|
||||
if (q->a53_cc && frame) {
|
||||
AVFrameSideData *side_data = NULL;
|
||||
QSVH264EncContext *qh264 = avctx->priv_data;
|
||||
QSVEncContext *q = &qh264->qsv;
|
||||
mfxPayload* payload;
|
||||
mfxU8* sei_data;
|
||||
size_t sei_size;
|
||||
|
Loading…
Reference in New Issue
Block a user