[FFmpeg-devel] [PATCH 66/67] avcodec/rv10: Avoid indirection
Andreas Rheinhardt
andreas.rheinhardt at outlook.com
Fri Jun 14 21:25:57 EEST 2024
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt at outlook.com>
---
libavcodec/rv10.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/libavcodec/rv10.c b/libavcodec/rv10.c
index 65060d4ece..753c6c6cb3 100644
--- a/libavcodec/rv10.c
+++ b/libavcodec/rv10.c
@@ -385,11 +385,11 @@ static av_cold int rv10_decode_init(AVCodecContext *avctx)
case 2:
if (minor_ver >= 2) {
s->low_delay = 0;
- s->avctx->has_b_frames = 1;
+ avctx->has_b_frames = 1;
}
break;
default:
- av_log(s->avctx, AV_LOG_ERROR, "unknown header %X\n", rv->sub_id);
+ av_log(avctx, AV_LOG_ERROR, "unknown header %X\n", rv->sub_id);
avpriv_request_sample(avctx, "RV1/2 version");
return AVERROR_PATCHWELCOME;
}
--
2.40.1
More information about the ffmpeg-devel
mailing list