Changeset 3760ad3478241bc18fec978b9af1ea4c12c77600
- Timestamp:
- 19/11/05 08:57:08
(3 years ago)
- Author:
- Marian Durkovic <md@videolan.org>
- git-committer:
- Marian Durkovic <md@videolan.org> 1132387028 +0000
- git-parent:
[e8f15ad9a2bf80226901653b118416b7bdf2c7f5]
- git-author:
- Marian Durkovic <md@videolan.org> 1132387028 +0000
- Message:
don't perform prebuffering for UDP, since it causes refclock fluctuation
as large as +/- 25 msec and too frequent audio up/down sampling
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r8ee331b |
r3760ad3 |
|
| 565 | 565 | msg_Dbg( p_access, "detected TS over raw UDP" ); |
|---|
| 566 | 566 | p_access->pf_block = BlockUDP; |
|---|
| | 567 | p_access->info.b_prebuffered = VLC_TRUE; |
|---|
| 567 | 568 | return p_block; |
|---|
| 568 | 569 | } |
|---|
| … | … | |
| 582 | 583 | msg_Dbg( p_access, "no supported RTP header detected" ); |
|---|
| 583 | 584 | p_access->pf_block = BlockUDP; |
|---|
| | 585 | p_access->info.b_prebuffered = VLC_TRUE; |
|---|
| 584 | 586 | return p_block; |
|---|
| 585 | 587 | } |
|---|
| … | … | |
| 605 | 607 | msg_Dbg( p_access, "no RTP header detected" ); |
|---|
| 606 | 608 | p_access->pf_block = BlockUDP; |
|---|
| | 609 | p_access->info.b_prebuffered = VLC_TRUE; |
|---|
| 607 | 610 | return p_block; |
|---|
| 608 | 611 | } |
|---|