[vlc-devel] commit: asf.c: allow adding tracks on-fly when doing normal asf muxing ( Ilkka Ollakka )
git version control
git at videolan.org
Tue Oct 6 21:42:21 CEST 2009
vlc | branch: master | Ilkka Ollakka <ileoo at videolan.org> | Wed Sep 30 16:31:56 2009 +0300| [a04ff28bae43b4cb37c60789de568a55c4a7be5b] | committer: Ilkka Ollakka
asf.c: allow adding tracks on-fly when doing normal asf muxing
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=a04ff28bae43b4cb37c60789de568a55c4a7be5b
---
modules/mux/asf.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/modules/mux/asf.c b/modules/mux/asf.c
index cd8c8b4..86adb0f 100644
--- a/modules/mux/asf.c
+++ b/modules/mux/asf.c
@@ -326,7 +326,7 @@ static int Control( sout_mux_t *p_mux, int i_query, va_list args )
case MUX_CAN_ADD_STREAM_WHILE_MUXING:
pb_bool = (bool*)va_arg( args, bool * );
if( p_sys->b_asf_http ) *pb_bool = true;
- else *pb_bool = false;
+ else *pb_bool = true;
return VLC_SUCCESS;
case MUX_GET_ADD_STREAM_WAIT:
More information about the vlc-devel
mailing list