Changeset e5bd9ad90b18b46d5f3c30f2f3bdc55c3be320d4
- 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
| r906a3bf |
re5bd9ad |
|
| 386 | 386 | |
|---|
| 387 | 387 | /***************************************************************************** |
|---|
| 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) |
|---|
| 390 | 389 | *****************************************************************************/ |
|---|
| 391 | 390 | static block_t *BlockTCP( access_t *p_access ) |
|---|
| … | … | |
| 574 | 573 | p_block->i_dts = (mtime_t) GetWBE( p_block->p_buffer + 2 ); |
|---|
| 575 | 574 | |
|---|
| 576 | | /* FIXME: use ptmap */ |
|---|
| | 575 | /* FIXME: use rtpmap */ |
|---|
| 577 | 576 | switch( i_payload_type ) |
|---|
| 578 | 577 | { |
|---|
| … | … | |
| 736 | 735 | { |
|---|
| 737 | 736 | case 33: |
|---|
| 738 | | msg_Dbg( p_access, "detected TS over RTP" ); |
|---|
| | 737 | msg_Dbg( p_access, "detected MPEG2 TS over RTP" ); |
|---|
| 739 | 738 | p_access->psz_demux = strdup( "ts" ); |
|---|
| 740 | 739 | break; |
|---|
| 741 | 740 | |
|---|
| 742 | 741 | case 14: |
|---|
| 743 | | msg_Dbg( p_access, "detected MPEG audio over RTP" ); |
|---|
| | 742 | msg_Dbg( p_access, "detected MPEG Audio over RTP" ); |
|---|
| 744 | 743 | p_access->psz_demux = strdup( "mpga" ); |
|---|
| 745 | 744 | break; |
|---|
| 746 | 745 | |
|---|
| 747 | 746 | case 32: |
|---|
| 748 | | msg_Dbg( p_access, "detected MPEG video over RTP" ); |
|---|
| | 747 | msg_Dbg( p_access, "detected MPEG Video over RTP" ); |
|---|
| 749 | 748 | p_access->psz_demux = strdup( "mpgv" ); |
|---|
| 750 | 749 | break; |
|---|