mirror of
https://github.com/videolan/vlc.git
synced 2024-11-29 04:45:36 +08:00
rtsp.c: BeOS fix. variables can't be declared in the middle of the function.
This commit is contained in:
parent
7ea70d9a36
commit
c8f1e3fdf6
@ -1133,6 +1133,7 @@ static char *SDPGenerate( const vod_media_t *p_media, httpd_client_t *cl )
|
||||
int i, i_size;
|
||||
char *p, *psz_sdp, ip[NI_MAXNUMERICHOST], ipv;
|
||||
const char *psz_control;
|
||||
lldiv_t d;
|
||||
|
||||
if( httpd_ServerIP( cl, ip ) == NULL )
|
||||
return NULL;
|
||||
@ -1195,7 +1196,7 @@ static char *SDPGenerate( const vod_media_t *p_media, httpd_client_t *cl )
|
||||
|
||||
if( p_media->i_length > 0 )
|
||||
{
|
||||
lldiv_t d = lldiv( p_media->i_length / 1000, 1000 );
|
||||
d = lldiv( p_media->i_length / 1000, 1000 );
|
||||
p += sprintf( p, "a=range:npt=0-"I64Fd".%03u\r\n", d.quot,
|
||||
(unsigned)d.rem );
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user