Changeset e5bd9ad90b18b46d5f3c30f2f3bdc55c3be320d4

Show
Ignore:
Timestamp:
06/03/07 19:56:24 (2 years ago)
Author:
Rémi Denis-Courmont <rem@videolan.org>
git-committer:
Rémi Denis-Courmont <rem@videolan.org> 1173207384 +0000
git-parent:

[14442b97d8b857fdb5c14368f2e672c3ced511a2]

git-author:
Rémi Denis-Courmont <rem@videolan.org> 1173207384 +0000
Message:

Fix references

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • modules/access/udp.c

    r906a3bf re5bd9ad  
    386386 
    387387/***************************************************************************** 
    388  * BlockTCP: Framed RTP/AVP packet reception for COMEDIA 
    389  * Still an I-D (draft-ietf-avt-rtp-framing-contrans-06) - subject to change. 
     388 * BlockTCP: Framed RTP/AVP packet reception for COMEDIA (see RFC4571) 
    390389 *****************************************************************************/ 
    391390static block_t *BlockTCP( access_t *p_access ) 
     
    574573    p_block->i_dts = (mtime_t) GetWBE( p_block->p_buffer + 2 ); 
    575574 
    576     /* FIXME: use ptmap */ 
     575    /* FIXME: use rtpmap */ 
    577576    switch( i_payload_type ) 
    578577    { 
     
    736735    { 
    737736        case 33: 
    738             msg_Dbg( p_access, "detected TS over RTP" ); 
     737            msg_Dbg( p_access, "detected MPEG2 TS over RTP" ); 
    739738            p_access->psz_demux = strdup( "ts" ); 
    740739            break; 
    741740 
    742741        case 14: 
    743             msg_Dbg( p_access, "detected MPEG audio over RTP" ); 
     742            msg_Dbg( p_access, "detected MPEG Audio over RTP" ); 
    744743            p_access->psz_demux = strdup( "mpga" ); 
    745744            break; 
    746745 
    747746        case 32: 
    748             msg_Dbg( p_access, "detected MPEG video over RTP" ); 
     747            msg_Dbg( p_access, "detected MPEG Video over RTP" ); 
    749748            p_access->psz_demux = strdup( "mpgv" ); 
    750749            break;