Changeset 24dc1822ebaff258b13dffc3f60b48b9cd82f54d

Show
Ignore:
Timestamp:
27/10/05 14:57:14 (3 years ago)
Author:
Marian Durkovic <md@videolan.org>
git-committer:
Marian Durkovic <md@videolan.org> 1130417834 +0000
git-parent:

[0337533b39a2eada8c257a2f6a127a807e89ddcc]

git-author:
Marian Durkovic <md@videolan.org> 1130417834 +0000
Message:

skip 4 bytes also for RTP payload=32 (MPV) - RFC2250

Files:

Legend:

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

    r4a3274f r24dc182  
    417417static block_t *BlockParseRTP( access_t *p_access, block_t *p_block ) 
    418418{ 
    419     access_sys_t *p_sys = (access_sys_t *) p_access->p_sys; 
    420419    int      i_rtp_version; 
    421420    int      i_CSRC_count; 
     
    443442        msg_Dbg( p_access, "RTP version is %u, should be 2", i_rtp_version ); 
    444443 
    445     if( i_payload_type == 14
     444    if( i_payload_type == 14 || i_payload_type == 32
    446445        i_skip = 4; 
    447     else if( i_payload_type !=  33 && i_payload_type != 32
     446    else if( i_payload_type !=  33
    448447        msg_Dbg( p_access, "unsupported RTP payload type (%u)", i_payload_type ); 
    449448    if( i_extension_flag )