]> git.sesse.net Git - vlc/commitdiff
* rtp: Added mpeg4 video(rfc 3016) and audio(mpeg4-generic). ( but far
authorLaurent Aimar <fenrir@videolan.org>
Sat, 1 Nov 2003 00:15:49 +0000 (00:15 +0000)
committerLaurent Aimar <fenrir@videolan.org>
Sat, 1 Nov 2003 00:15:49 +0000 (00:15 +0000)
       from perfect)
        Use udp raw mode.
        Generate a SDP file (for now it is just fprintf to stderr).
        The streams produced work under gmp4player. (mpeg4ip)

modules/stream_out/rtp.c

index c6f8c28a15ff14368517b9db1697b34273d9538e..8ddb9bfea870c303afc74da5a273fe140d02453e 100644 (file)
@@ -2,7 +2,7 @@
  * rtp.c
  *****************************************************************************
  * Copyright (C) 2003 VideoLAN
- * $Id: rtp.c,v 1.1 2003/10/31 16:57:12 fenrir Exp $
+ * $Id: rtp.c,v 1.2 2003/11/01 00:15:49 fenrir Exp $
  *
  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
  *
@@ -53,6 +53,10 @@ static int               Send( sout_stream_t *, sout_stream_id_t *, sout_buffer_
 
 struct sout_stream_sys_t
 {
+    /* sdp */
+    int64_t i_sdp_id;
+    int     i_sdp_version;
+
     /* */
     char *psz_destination;
     int  i_port;
@@ -65,8 +69,38 @@ struct sout_stream_sys_t
     sout_mux_t   *p_mux;
 
     /* */
+    int              i_es;
+    sout_stream_id_t **es;
+    char             *psz_sdp;
+};
+
+typedef int (*pf_rtp_packetizer_t)( sout_stream_t *, sout_stream_id_t *, sout_buffer_t * );
+struct sout_stream_id_t
+{
+    /* rtp field */
+    uint8_t     i_payload_type;
+    uint16_t    i_sequence;
+    uint32_t    i_timestamp_start;
+    uint8_t     ssrc[4];
+
+    /* for sdp */
+    int         i_clock_rate;
+    char        *psz_rtpmap;
+    char        *psz_fmtp;
+    char        *psz_destination;
+    int         i_port;
+    int         i_cat;
+
+    /* Packetizer specific fields */
+    pf_rtp_packetizer_t pf_packetize;
+    int           i_mtu;
+    sout_buffer_t *packet;
+
+    /* for sending the packets */
+    sout_access_out_t *p_access;
 };
 
+
 /*****************************************************************************
  * Open:
  *****************************************************************************/
@@ -96,7 +130,7 @@ static int Open( vlc_object_t *p_this )
     }
     else
     {
-        p_sys->i_ttl = 0;
+        p_sys->i_ttl = config_GetInt( p_stream, "ttl" );
     }
     if( ( val = sout_cfg_find_value( p_stream->p_cfg, "mux" ) ) )
     {
@@ -108,6 +142,12 @@ static int Open( vlc_object_t *p_this )
 
     p_sys->p_mux  = NULL;
     p_sys->i_payload_type = 96;
+    p_sys->i_es = 0;
+    p_sys->es   = NULL;
+    p_sys->psz_sdp = NULL;
+
+    p_sys->i_sdp_id = mdate();
+    p_sys->i_sdp_version = 1;
 
 
     p_stream->pf_add    = Add;
@@ -127,40 +167,108 @@ static void Close( vlc_object_t * p_this )
     sout_stream_t     *p_stream = (sout_stream_t*)p_this;
     sout_stream_sys_t *p_sys = p_stream->p_sys;
 
+    if( p_sys->psz_sdp )
+    {
+        free( p_sys->psz_sdp );
+    }
     free( p_sys );
 }
 
 /*****************************************************************************
- *
+ * SDPGenerate
  *****************************************************************************/
-
-typedef int (*pf_rtp_packetizer_t)( sout_stream_t *, sout_stream_id_t *, sout_buffer_t * );
-struct sout_stream_id_t
+static void SDPGenerate( sout_stream_t *p_stream )
 {
-    /* rtp field */
-    uint8_t     i_payload_type;
-    uint16_t    i_sequence;
-    uint32_t    i_timestamp_start;
-    uint8_t     ssrc[4];
+    sout_stream_sys_t *p_sys = p_stream->p_sys;
+    int i_size;
+    char *psz_sdp, *p;
+    int i;
+
+    i_size = strlen( "v=0\n" ) +
+             strlen( "o=- * * IN IP4 127.0.0.1\n" ) +
+             strlen( "s=NONE\n" ) +
+             strlen( "c=IN IP4 */*\n" ) +
+             strlen( p_sys->psz_destination ) +
+             20 + 10 + 10 + 1;
+    for( i = 0; i < p_sys->i_es; i++ )
+    {
+        sout_stream_id_t *id = p_sys->es[i];
 
-    /* for sdp */
-    int         i_clock_rate;
-    char        *psz_rtpmap;
-    char        *psz_fmtp;
-    char        *psz_destination;
-    int         i_port;
+        i_size += strlen( "m=**d*o * RTP/AVP *\n" ) + 10 + 10;
 
-    /* Packetizer specific fields */
-    pf_rtp_packetizer_t pf_packetize;
-    int           i_mtu;
-    sout_buffer_t *packet;
+        if( id->psz_rtpmap )
+        {
+            i_size += strlen( "a=rtpmap:* *\n" ) + strlen( id->psz_rtpmap )+10;
+        }
+        if( id->psz_fmtp )
+        {
+            i_size += strlen( "a=fmtp:* *\n" ) + strlen( id->psz_fmtp ) + 10;
+        }
+    }
 
-    /* for sending the packets */
-    sout_access_out_t *p_access;
-};
+    p = psz_sdp = malloc( i_size );
+    p += sprintf( p, "v=0\n" );
+    p += sprintf( p, "o=- "I64Fd" %d IN IP4 127.0.0.1\n", p_sys->i_sdp_id, p_sys->i_sdp_version );
+    p += sprintf( p, "s=NONE\n" );
+    p += sprintf( p, "c=IN IP4 %s/%d\n", p_sys->psz_destination, p_sys->i_ttl );
 
-static int rtp_packetize_mpa( sout_stream_t *, sout_stream_id_t *, sout_buffer_t * );
-static int rtp_packetize_ac3( sout_stream_t *, sout_stream_id_t *, sout_buffer_t * );
+    for( i = 0; i < p_sys->i_es; i++ )
+    {
+        sout_stream_id_t *id = p_sys->es[i];
+
+        if( id->i_cat == AUDIO_ES )
+        {
+            p += sprintf( p, "m=audio %d RTP/AVP %d\n",
+                          id->i_port, id->i_payload_type );
+        }
+        else if( id->i_cat == VIDEO_ES )
+        {
+            p += sprintf( p, "m=video %d RTP/AVP %d\n",
+                          id->i_port, id->i_payload_type );
+        }
+        else
+        {
+            continue;
+        }
+        if( id->psz_rtpmap )
+        {
+            p += sprintf( p, "a=rtpmap:%d %s\n", id->i_payload_type, id->psz_rtpmap );
+        }
+        if( id->psz_fmtp )
+        {
+            p += sprintf( p, "a=fmtp:%d %s\n", id->i_payload_type, id->psz_fmtp );
+        }
+    }
+
+    p = p_sys->psz_sdp;
+    p_sys->psz_sdp = psz_sdp;   /* I hope this avoid a lock (when we export it by http) */
+
+    free( p );
+
+    fprintf( stderr, "sdp=%s", p_sys->psz_sdp );
+}
+
+/*****************************************************************************
+ *
+ *****************************************************************************/
+
+static int rtp_packetize_mpa  ( sout_stream_t *, sout_stream_id_t *, sout_buffer_t * );
+static int rtp_packetize_ac3  ( sout_stream_t *, sout_stream_id_t *, sout_buffer_t * );
+static int rtp_packetize_split( sout_stream_t *, sout_stream_id_t *, sout_buffer_t * );
+static int rtp_packetize_mp4a ( sout_stream_t *, sout_stream_id_t *, sout_buffer_t * );
+
+static void sprintf_hexa( char *s, uint8_t *p_data, int i_data )
+{
+    static const char hex[16] = "0123456789ABCDEF";
+    int i;
+
+    for( i = 0; i < i_data; i++ )
+    {
+        s[2*i+0] = hex[(p_data[i]>>8)&0xf];
+        s[2*i+1] = hex[(p_data[i]   )&0xf];
+    }
+    s[2*i_data] = '\0';
+}
 
 static sout_stream_id_t * Add      ( sout_stream_t *p_stream, sout_format_t *p_fmt )
 {
@@ -175,11 +283,11 @@ static sout_stream_id_t * Add      ( sout_stream_t *p_stream, sout_format_t *p_f
     /* first try to create the access out */
     if( p_sys->i_ttl > 0 )
     {
-        sprintf( access, "udp{ttl=%d}", p_sys->i_ttl );
+        sprintf( access, "udp{raw,ttl=%d}", p_sys->i_ttl );
     }
     else
     {
-        sprintf( access, "udp" );
+        sprintf( access, "udp{raw}" );
     }
     sprintf( url, "%s:%d", p_sys->psz_destination, p_sys->i_port );
     if( ( p_access = sout_AccessOutNew( p_sout, access, url ) ) == NULL )
@@ -211,11 +319,46 @@ static sout_stream_id_t * Add      ( sout_stream_t *p_stream, sout_format_t *p_f
             id->psz_rtpmap = strdup( "ac3/90000" );
             id->pf_packetize = rtp_packetize_ac3;
             break;
+        case VLC_FOURCC( 'm', 'p', '4', 'v' ):
+        {
+            char hexa[2*p_fmt->i_extra_data +1];
+
+            id->i_payload_type = p_sys->i_payload_type++;
+            id->i_clock_rate = 90000;
+            id->psz_rtpmap = strdup( "MP4V-ES/90000" );
+            id->pf_packetize = rtp_packetize_split;
+            if( p_fmt->i_extra_data > 0 )
+            {
+                id->psz_fmtp = malloc( 100 + 2 * p_fmt->i_extra_data );
+                sprintf_hexa( hexa, p_fmt->p_extra_data, p_fmt->i_extra_data );
+                sprintf( id->psz_fmtp,
+                         "profile-level-id=3; config=%s", hexa );
+            }
+            break;
+        }
+        case VLC_FOURCC( 'm', 'p', '4', 'a' ):
+        {
+            char hexa[2*p_fmt->i_extra_data +1];
+
+            id->i_payload_type = p_sys->i_payload_type++;
+            id->i_clock_rate = p_fmt->i_sample_rate;
+            id->psz_rtpmap = malloc( strlen( "mpeg4-generic/" ) + 12 );
+            sprintf( id->psz_rtpmap, "mpeg4-generic/%d", p_fmt->i_sample_rate );
+            id->pf_packetize = rtp_packetize_mp4a;
+            id->psz_fmtp = malloc( 200 + 2 * p_fmt->i_extra_data );
+            sprintf_hexa( hexa, p_fmt->p_extra_data, p_fmt->i_extra_data );
+            sprintf( id->psz_fmtp,
+                     "streamtype=5; profile-level-id=15; mode=AAC-hbr; config=%s; "
+                     "SizeLength=13; IndexLength=3; IndexDeltaLength=3; Profile=1;", hexa );
+            break;
+        }
+
         default:
             msg_Err( p_stream, "cannot add this stream (unsupported codec:%4.4s)", (char*)&p_fmt->i_fourcc );
             free( id );
             return NULL;
     }
+    id->i_cat = p_fmt->i_cat;
 
     id->ssrc[0] = rand()&0xff;
     id->ssrc[1] = rand()&0xff;
@@ -236,12 +379,18 @@ static sout_stream_id_t * Add      ( sout_stream_t *p_stream, sout_format_t *p_f
 
     /* update port used (2 -> 1 rtp, 1 rtcp )*/
     p_sys->i_port += 2;
+    TAB_APPEND( p_sys->i_es, p_sys->es, id );
 
+    SDPGenerate( p_stream );
     return id;
 }
 
 static int     Del      ( sout_stream_t *p_stream, sout_stream_id_t *id )
 {
+    sout_stream_sys_t *p_sys = p_stream->p_sys;
+
+    TAB_REMOVE( p_sys->i_es, p_sys->es, id );
+
     if( id->packet )
     {
         sout_BufferDelete( p_stream->p_sout, id->packet );
@@ -371,3 +520,73 @@ static int rtp_packetize_ac3( sout_stream_t *p_stream, sout_stream_id_t *id, sou
     return VLC_SUCCESS;
 }
 
+static int rtp_packetize_split( sout_stream_t *p_stream, sout_stream_id_t *id, sout_buffer_t *in )
+{
+    int     i_max   = id->i_mtu - 12; /* payload max in one packet */
+    int     i_count = ( in->i_size + i_max - 1 ) / i_max;
+
+    uint8_t *p_data = in->p_buffer;
+    int     i_data  = in->i_size;
+    int     i;
+
+    for( i = 0; i < i_count; i++ )
+    {
+        int           i_payload = __MIN( i_max, i_data );
+        sout_buffer_t *out = sout_BufferNew( p_stream->p_sout, 12 + i_payload );
+
+        /* rtp common header */
+        rtp_packetize_common( id, out, ((i == i_count - 1)?1:0), (in->i_pts > 0 ? in->i_pts : in->i_dts) );
+        memcpy( &out->p_buffer[12], p_data, i_payload );
+
+        out->i_size   = 12 + i_payload;
+        out->i_dts    = in->i_dts + i * in->i_length / i_count;
+        out->i_length = in->i_length / i_count;
+
+        sout_AccessOutWrite( id->p_access, out );
+
+        p_data += i_payload;
+        i_data -= i_payload;
+    }
+
+    return VLC_SUCCESS;
+}
+
+static int rtp_packetize_mp4a( sout_stream_t *p_stream, sout_stream_id_t *id, sout_buffer_t *in )
+{
+    int     i_max   = id->i_mtu - 16; /* payload max in one packet */
+    int     i_count = ( in->i_size + i_max - 1 ) / i_max;
+
+    uint8_t *p_data = in->p_buffer;
+    int     i_data  = in->i_size;
+    int     i;
+
+    for( i = 0; i < i_count; i++ )
+    {
+        int           i_payload = __MIN( i_max, i_data );
+        sout_buffer_t *out = sout_BufferNew( p_stream->p_sout, 16 + i_payload );
+
+        /* rtp common header */
+        rtp_packetize_common( id, out, ((i == i_count - 1)?1:0), (in->i_pts > 0 ? in->i_pts : in->i_dts) );
+        /* AU headers */
+        /* AU headers length (bits) */
+        out->p_buffer[12] = 0;
+        out->p_buffer[13] = 2*8;
+        /* for each AU length 13 bits + idx 3bits, */
+        out->p_buffer[14] = ( in->i_size >> 5 )&&0xff;
+        out->p_buffer[15] = ( (in->i_size&&0xff)<<3 )|0;
+
+        memcpy( &out->p_buffer[16], p_data, i_payload );
+
+        out->i_size   = 16 + i_payload;
+        out->i_dts    = in->i_dts + i * in->i_length / i_count;
+        out->i_length = in->i_length / i_count;
+
+        sout_AccessOutWrite( id->p_access, out );
+
+        p_data += i_payload;
+        i_data -= i_payload;
+    }
+
+    return VLC_SUCCESS;
+}
+