Commit 3915ce75 authored by Rafaël Carré's avatar Rafaël Carré

TS mux: set correct mimetype

ref: rfc 3555

Note that MUX_MIME_TYPE is currently never used
parent 1309527c
......@@ -901,7 +901,7 @@ static int Control( sout_mux_t *p_mux, int i_query, va_list args )
case MUX_GET_MIME:
ppsz = (char**)va_arg( args, char ** );
*ppsz = strdup( "video/mpeg" ); /* FIXME not sure */
*ppsz = strdup( "video/mp2t" );
return VLC_SUCCESS;
default:
......
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