[vlc-devel] [PATCH] Fix bad type for stream index

Alain Degreffe eczema at ecze.com
Tue Jul 2 08:15:09 CEST 2013


This minor bugfix sould be integrated...

 From http://msdn.microsoft.com/en-us/library/cc251258.aspx

stream-switch-entry = "stream-switch-entry="
                       1*4HEXDIG ":" 1*4HEXDIG ":"
                       ("0" / "1" / "2")

For the moment all stream id > 9 are concerned..

Thanks.


Alain


Le 01/07/13 14:47, Elodie Thomann a écrit :
> ---
>   modules/access/mms/mmsh.c |    2 +-
>   1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/modules/access/mms/mmsh.c b/modules/access/mms/mmsh.c
> index 2a2e85e..2a36670 100644
> --- a/modules/access/mms/mmsh.c
> +++ b/modules/access/mms/mmsh.c
> @@ -824,7 +824,7 @@ static int Start( access_t *p_access, uint64_t i_pos )
>                   i_select = 0;
>               }
>               net_Printf( p_access, p_sys->fd, NULL,
> -                        "ffff:%d:%d ", i, i_select );
> +                        "ffff:%x:%d ", i, i_select );
>           }
>       }
>       net_Printf( p_access, p_sys->fd, NULL, "\r\n" );




More information about the vlc-devel mailing list