]> git.sesse.net Git - vlc/commitdiff
Revert [14683]
authorRémi Denis-Courmont <rem@videolan.org>
Thu, 9 Mar 2006 10:56:53 +0000 (10:56 +0000)
committerRémi Denis-Courmont <rem@videolan.org>
Thu, 9 Mar 2006 10:56:53 +0000 (10:56 +0000)
You can definitely declare variable at the beginning of a nested block with gcc 2.95

modules/misc/rtsp.c

index efaee4abc026027c07575731873d3cf89715155d..124340b68083a728853dcfe64ef903bb966b2f4c 100644 (file)
@@ -1133,7 +1133,6 @@ 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;
@@ -1196,7 +1195,7 @@ static char *SDPGenerate( const vod_media_t *p_media, httpd_client_t *cl )
 
     if( p_media->i_length > 0 )
     {
-        d = lldiv( p_media->i_length / 1000, 1000 );
+        lldiv_t d = lldiv( p_media->i_length / 1000, 1000 );
         p += sprintf( p, "a=range:npt=0-"I64Fd".%03u\r\n", d.quot,
                       (unsigned)d.rem );
     }