Broken in e8704a8f60041abb84585efaf3223abf0b6dcb90 when ffurl_read() has been turned into a static inline function different from the actually used function ffurl_read2().
Fixes ticket #10562. Signed-off-by: Andreas Rheinhardt <[email protected]> --- libavformat/aviobuf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/aviobuf.c b/libavformat/aviobuf.c index c55fe8a837..2899c75521 100644 --- a/libavformat/aviobuf.c +++ b/libavformat/aviobuf.c @@ -1030,7 +1030,7 @@ URLContext* ffio_geturlcontext(AVIOContext *s) if (!s) return NULL; - if (s->opaque && s->read_packet == (int (*)(void *, uint8_t *, int))ffurl_read) + if (s->opaque && s->read_packet == ffurl_read2) return s->opaque; else return NULL; -- 2.34.1 _______________________________________________ ffmpeg-devel mailing list [email protected] https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email [email protected] with subject "unsubscribe".
