Changeset 56c78d09b1582bb5193a3608f0d2999fab5dca44
- Timestamp:
- 12/02/07 20:50:29
(2 years ago)
- Author:
- Rémi Denis-Courmont <rem@videolan.org>
- git-committer:
- Rémi Denis-Courmont <rem@videolan.org> 1171309829 +0000
- git-parent:
[9a6213702233b45d4b33b961456a21b23326b044]
- git-author:
- Rémi Denis-Courmont <rem@videolan.org> 1171309829 +0000
- Message:
Fix previous commit
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r9a62137 |
r56c78d0 |
|
| 237 | 237 | p_sys->b_framed_rtp = b_framed; |
|---|
| 238 | 238 | if (b_framed) |
|---|
| | 239 | { |
|---|
| | 240 | /* We don't do autodetection and prebuffering in case of framing */ |
|---|
| | 241 | p_access->pf_block = BlockRTP; |
|---|
| 239 | 242 | p_sys->i_mtu = 65535; |
|---|
| | 243 | } |
|---|
| 240 | 244 | else |
|---|
| 241 | 245 | { |
|---|
| … | … | |
| 578 | 582 | break; |
|---|
| 579 | 583 | |
|---|
| 580 | | p = BlockParseRTP( p_access, |
|---|
| 581 | | p_sys->b_framed_rtp ? BlockTCP( p_access ) |
|---|
| 582 | | : BlockUDP( p_access ) ); |
|---|
| | 584 | p = BlockParseRTP( p_access, BlockUDP( p_access ) ); |
|---|
| 583 | 585 | if( !p && (i_date - i_first) > p_sys->i_rtp_late ) |
|---|
| 584 | 586 | { |
|---|
| … | … | |
| 605 | 607 | ( mdate() - p_sys->p_list->i_pts ) < p_sys->i_rtp_late ) |
|---|
| 606 | 608 | { |
|---|
| 607 | | p = BlockParseRTP( p_access, BlockUDP( p_access )); |
|---|
| 608 | | |
|---|
| | 609 | p = BlockParseRTP( p_access, |
|---|
| | 610 | p_sys->b_framed_rtp ? BlockTCP( p_access ) |
|---|
| | 611 | : BlockUDP( p_access ) ); |
|---|
| 609 | 612 | if ( !p ) |
|---|
| 610 | 613 | return NULL; |
|---|