Changeset 24dc1822ebaff258b13dffc3f60b48b9cd82f54d
- 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
| r4a3274f |
r24dc182 |
|
| 417 | 417 | static block_t *BlockParseRTP( access_t *p_access, block_t *p_block ) |
|---|
| 418 | 418 | { |
|---|
| 419 | | access_sys_t *p_sys = (access_sys_t *) p_access->p_sys; |
|---|
| 420 | 419 | int i_rtp_version; |
|---|
| 421 | 420 | int i_CSRC_count; |
|---|
| … | … | |
| 443 | 442 | msg_Dbg( p_access, "RTP version is %u, should be 2", i_rtp_version ); |
|---|
| 444 | 443 | |
|---|
| 445 | | if( i_payload_type == 14 ) |
|---|
| | 444 | if( i_payload_type == 14 || i_payload_type == 32) |
|---|
| 446 | 445 | i_skip = 4; |
|---|
| 447 | | else if( i_payload_type != 33 && i_payload_type != 32 ) |
|---|
| | 446 | else if( i_payload_type != 33 ) |
|---|
| 448 | 447 | msg_Dbg( p_access, "unsupported RTP payload type (%u)", i_payload_type ); |
|---|
| 449 | 448 | if( i_extension_flag ) |
|---|