[FFmpeg-cvslog] avcodec/huffyuvenc: Avoid pointless indirections
Andreas Rheinhardt
git at videolan.org
Sun Oct 9 10:24:42 EEST 2022
ffmpeg | branch: master | Andreas Rheinhardt <andreas.rheinhardt at outlook.com> | Sat Oct 1 20:24:28 2022 +0200| [be65f24ad6808d0f01808dc92719a89189bca4e8] | committer: Andreas Rheinhardt
avcodec/huffyuvenc: Avoid pointless indirections
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt at outlook.com>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=be65f24ad6808d0f01808dc92719a89189bca4e8
---
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++) {
More information about the ffmpeg-cvslog
mailing list