[FFmpeg-devel] [PATCH 03/14] avcodec/huffyuvenc: Avoid pointless indirections
Andreas Rheinhardt
andreas.rheinhardt at outlook.com
Sun Oct 2 03:06:06 EEST 2022
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt at outlook.com>
---
libavcodec/huffyuvenc.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/libavcodec/huffyuvenc.c b/libavcodec/huffyuvenc.c
index d159d5d309..fa4923962f 100644
--- a/libavcodec/huffyuvenc.c
+++ b/libavcodec/huffyuvenc.c
@@ -348,7 +348,7 @@ static av_cold int encode_init(AVCodecContext *avctx)
avctx->extradata[2] |= 4;
avctx->extradata[3] = 1;
}
- s->avctx->extradata_size = 4;
+ avctx->extradata_size = 4;
if (avctx->stats_in) {
char *p = avctx->stats_in;
@@ -378,10 +378,10 @@ static av_cold int encode_init(AVCodecContext *avctx)
}
}
- ret = store_huffman_tables(s, s->avctx->extradata + s->avctx->extradata_size);
+ ret = store_huffman_tables(s, avctx->extradata + avctx->extradata_size);
if (ret < 0)
return ret;
- s->avctx->extradata_size += ret;
+ avctx->extradata_size += ret;
if (s->context) {
for (i = 0; i < 4; i++) {
--
2.34.1
More information about the ffmpeg-devel
mailing list