From: Zane van Iperen Date: Sat, 19 Sep 2020 22:19:03 +0000 (+1000) Subject: avformat/argo_brp: don't pass AVStream into avpriv_request_sample() X-Git-Url: https://git.sesse.net/?p=ffmpeg;a=commitdiff_plain;h=b0dee629da132f31934d58104c209d1ab3c1cb79 avformat/argo_brp: don't pass AVStream into avpriv_request_sample() Signed-off-by: Zane van Iperen --- diff --git a/libavformat/argo_brp.c b/libavformat/argo_brp.c index dcda2c75ac0..c4178186390 100644 --- a/libavformat/argo_brp.c +++ b/libavformat/argo_brp.c @@ -275,7 +275,7 @@ static int argo_brp_read_header(AVFormatContext *s) blk.size = AV_RL32(buf + 8); if (blk.stream_id != brp->basf.index) { - avpriv_request_sample(st, "first block not BASF"); + avpriv_request_sample(s, "first block not BASF"); return AVERROR_PATCHWELCOME; }