changeset 34536:e289f1cae2f1

Use "seekable" instead of is_streamed.
author reimar
date Sat, 28 Jan 2012 12:40:36 +0000
parents 8f919281f8ca
children cf72993a2a33
files libmpdemux/muxer_lavf.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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;