X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=modules%2Fstream_out%2Fstandard.c;h=f052ccba2127910e9175d366ad240d73529af307;hb=c47bb3b7936ba2463b0b17cfacb4302c9b90db4f;hp=c65781c94fca8612d98a4252c913f252e4ced898;hpb=8abe30826a4cfa0d25f37d609867027e4f8c9ca5;p=vlc diff --git a/modules/stream_out/standard.c b/modules/stream_out/standard.c index c65781c94f..f052ccba21 100644 --- a/modules/stream_out/standard.c +++ b/modules/stream_out/standard.c @@ -100,11 +100,7 @@ vlc_module_begin () set_shortname( N_("Standard")) set_description( N_("Standard stream output") ) set_capability( "sout stream", 50 ) - add_shortcut( "standard" ) - add_shortcut( "std" ) - add_shortcut( "file" ) - add_shortcut( "http" ) - add_shortcut( "udp" ) + add_shortcut( "standard", "std", "file", "http", "udp" ) set_category( CAT_SOUT ) set_subcategory( SUBCAT_SOUT_STREAM ) @@ -249,6 +245,9 @@ static int Open( vlc_object_t *p_this ) { "avi", "avi" }, { "ogg", "ogg" }, { "ogm", "ogg" }, + { "ogv", "ogg" }, + { "flac","raw" }, + { "mp3", "raw" }, { "mp4", "mp4" }, { "mov", "mov" }, { "moov","mov" }, @@ -264,13 +263,13 @@ static int Open( vlc_object_t *p_this ) { "wav", "wav" }, { "flv", "ffmpeg{mux=flv}" }, { "mkv", "ffmpeg{mux=matroska}"}, + { "webm", "ffmpeg{mux=webm}"}, { "", "" } }; const char *psz_ext = strrchr( psz_url, '.' ) + 1; - int i; msg_Dbg( p_this, "extension is %s", psz_ext ); - for( i = 0; exttomux[i].ext[0]; i++ ) + for( int i = 0; exttomux[i].ext[0]; i++ ) { if( !strcasecmp( psz_ext, exttomux[i].ext ) ) {