Commit 75890fb5 authored by Ilkka Ollakka's avatar Ilkka Ollakka

avformat: don't mark buffer as need to be writable, as we don't write into it directly

parent 6ab7352e
...@@ -122,7 +122,7 @@ int OpenMux( vlc_object_t *p_this ) ...@@ -122,7 +122,7 @@ int OpenMux( vlc_object_t *p_this )
p_sys->io = avio_alloc_context( p_sys->io = avio_alloc_context(
p_sys->io_buffer, p_sys->io_buffer_size, p_sys->io_buffer, p_sys->io_buffer_size,
1, p_mux, NULL, IOWrite, IOSeek ); 0, p_mux, NULL, IOWrite, IOSeek );
p_sys->oc->pb = p_sys->io; p_sys->oc->pb = p_sys->io;
p_sys->oc->nb_streams = 0; p_sys->oc->nb_streams = 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment