Commit 42ef22bf authored by Laurent Aimar's avatar Laurent Aimar

Fixed invalid var_Create type in mmsh.

parent f5db1a38
...@@ -464,8 +464,8 @@ static int Reset( access_t *p_access ) ...@@ -464,8 +464,8 @@ static int Reset( access_t *p_access )
asf_StreamSelect( &p_sys->asfh, asf_StreamSelect( &p_sys->asfh,
var_CreateGetInteger( p_access, "mms-maxbitrate" ), var_CreateGetInteger( p_access, "mms-maxbitrate" ),
var_CreateGetBool( p_access, "mms-all" ), var_CreateGetBool( p_access, "mms-all" ),
var_CreateGetInteger( p_access, "audio" ), var_CreateGetBool( p_access, "audio" ),
var_CreateGetInteger( p_access, "video" ) ); var_CreateGetBool( p_access, "video" ) );
/* Check we have comptible asfh */ /* Check we have comptible asfh */
for( i = 1; i < 128; i++ ) for( i = 1; i < 128; i++ )
...@@ -701,8 +701,8 @@ static int Describe( access_t *p_access, char **ppsz_location ) ...@@ -701,8 +701,8 @@ static int Describe( access_t *p_access, char **ppsz_location )
asf_StreamSelect( &p_sys->asfh, asf_StreamSelect( &p_sys->asfh,
var_CreateGetInteger( p_access, "mms-maxbitrate" ), var_CreateGetInteger( p_access, "mms-maxbitrate" ),
var_CreateGetBool( p_access, "mms-all" ), var_CreateGetBool( p_access, "mms-all" ),
var_CreateGetInteger( p_access, "audio" ), var_CreateGetBool( p_access, "audio" ),
var_CreateGetInteger( p_access, "video" ) ); var_CreateGetBool( p_access, "video" ) );
return VLC_SUCCESS; return VLC_SUCCESS;
error: error:
......
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