[FFmpeg-cvslog] avformat/argo_brp: don't pass AVStream into avpriv_request_sample()

Zane van Iperen git at videolan.org
Sun Sep 20 15:51:54 EEST 2020


ffmpeg | branch: master | Zane van Iperen <zane at zanevaniperen.com> | Sun Sep 20 08:19:03 2020 +1000| [b0dee629da132f31934d58104c209d1ab3c1cb79] | committer: Zane van Iperen

avformat/argo_brp: don't pass AVStream into avpriv_request_sample()

Signed-off-by: Zane van Iperen <zane at zanevaniperen.com>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=b0dee629da132f31934d58104c209d1ab3c1cb79
---

 libavformat/argo_brp.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavformat/argo_brp.c b/libavformat/argo_brp.c
index dcda2c75ac..c417818639 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;
         }
 



More information about the ffmpeg-cvslog mailing list