[FFmpeg-devel] [PATCH] avformat: remove request_probe assert from ff_read_packet
Andreas Cadhalpun
andreas.cadhalpun at googlemail.com
Tue Oct 18 23:31:37 EEST 2016
Nothing guarantees to set request_probe to -1, so this assert can be
triggered, e.g. if st->probe_packets is 0.
Signed-off-by: Andreas Cadhalpun <Andreas.Cadhalpun at googlemail.com>
---
I think the reason why this assert isn't triggered way more often is
that the probing code usually works quite well.
---
libavformat/utils.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/libavformat/utils.c b/libavformat/utils.c
index 8a51aea..a62a073 100644
--- a/libavformat/utils.c
+++ b/libavformat/utils.c
@@ -806,7 +806,6 @@ int ff_read_packet(AVFormatContext *s, AVPacket *pkt)
if (st->probe_packets)
if ((err = probe_codec(s, st, NULL)) < 0)
return err;
- av_assert0(st->request_probe <= 0);
}
continue;
}
--
2.9.3
More information about the ffmpeg-devel
mailing list