1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-04 22:03:09 +02:00

avcodec/speedhqenc: Avoid indirection

Namely use avctx directly instead of s->avctx. While just at it,
also move the switch to the other checks involving avctx.

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
Andreas Rheinhardt
2025-03-02 00:34:19 +01:00
parent 565e57ea87
commit 9928b9e9fa

View File

@ -112,6 +112,20 @@ static av_cold int speedhq_encode_init(AVCodecContext *avctx)
return AVERROR_PATCHWELCOME;
}
switch (avctx->pix_fmt) {
case AV_PIX_FMT_YUV420P:
avctx->codec_tag = MKTAG('S','H','Q','0');
break;
case AV_PIX_FMT_YUV422P:
avctx->codec_tag = MKTAG('S','H','Q','2');
break;
case AV_PIX_FMT_YUV444P:
avctx->codec_tag = MKTAG('S','H','Q','4');
break;
default:
av_assert0(0);
}
s->min_qcoeff = -2048;
s->max_qcoeff = 2047;
@ -129,20 +143,6 @@ static av_cold int speedhq_encode_init(AVCodecContext *avctx)
ff_thread_once(&init_static_once, speedhq_init_static_data);
switch (s->avctx->pix_fmt) {
case AV_PIX_FMT_YUV420P:
s->avctx->codec_tag = MKTAG('S','H','Q','0');
break;
case AV_PIX_FMT_YUV422P:
s->avctx->codec_tag = MKTAG('S','H','Q','2');
break;
case AV_PIX_FMT_YUV444P:
s->avctx->codec_tag = MKTAG('S','H','Q','4');
break;
default:
av_assert0(0);
}
return 0;
}