On 08/01/15 23:03, Martin Storsjö wrote:

> Does the issue go away if you change this part of avio_seek
> 
>     if (!s->must_flush &&
>         offset1 >= 0 && offset1 <= (s->buf_end - s->buffer)) {
> 
> like this?
> 
>     if (!s->must_flush &&
>         offset1 >= 0 && offset1 < (s->buf_end - s->buffer)) {
> 
> 

I hope so, I guess we can use your fix.

lu

_______________________________________________
libav-devel mailing list
[email protected]
https://lists.libav.org/mailman/listinfo/libav-devel

Reply via email to