# HG changeset patch # User reimar # Date 1327754436 0 # Node ID e289f1cae2f1090681141ea7487ae48b7fa1c3e3 # Parent 8f919281f8ca40204cdd17234a681fed63caea48 Use "seekable" instead of is_streamed. diff -r 8f919281f8ca -r e289f1cae2f1 libmpdemux/muxer_lavf.c --- a/libmpdemux/muxer_lavf.c Sat Jan 28 12:36:05 2012 +0000 +++ b/libmpdemux/muxer_lavf.c Sat Jan 28 12:40:36 2012 +0000 @@ -378,7 +378,7 @@ priv->oc->pb = avio_alloc_context(priv->buffer, BIO_BUFFER_SIZE, 1, muxer, NULL, mp_write, mp_seek); if ((muxer->stream->flags & MP_STREAM_SEEK) != MP_STREAM_SEEK) - priv->oc->pb->is_streamed = 1; + priv->oc->pb->seekable = 0; muxer->priv = (void *) priv; muxer->cont_new_stream = &lavf_new_stream;