Changeset e55b8a6f199d250d264ae5e2cdc9275cfb5631b9
- Timestamp:
- 12/02/05 12:00:56
(4 years ago)
- Author:
- Gildas Bazin <gbazin@videolan.org>
- git-committer:
- Gildas Bazin <gbazin@videolan.org> 1108206056 +0000
- git-parent:
[99f6f6c1303556b8906449c0225ec4d52d16f557]
- git-author:
- Gildas Bazin <gbazin@videolan.org> 1108206056 +0000
- Message:
* modules/access/http.c,modules/access/mmsh,modules/demux/livedotcom.cpp: Disable clock synchro
algorithm for http/mms/rtsp by default for now since our algo was designed for local network
streaming of MPEG over UDP in mind and doesn't work well in other cases.
You can still use the --clock-synchro config option to override this.
Hopefully this commit will be reverted once the clock synchro has been re-written.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r2d5322c |
re55b8a6 |
|
| 385 | 385 | p_access->psz_demux ); |
|---|
| 386 | 386 | |
|---|
| 387 | | #if 0 /* Doesn't work really well because of the pre-buffering in shoutcast |
|---|
| 388 | | * servers (the buffer content will be sent as fast as possible). */ |
|---|
| | 387 | #if 0 /* Doesn't work really well because of the pre-buffering in |
|---|
| | 388 | * shoutcast servers (the buffer content will be sent as fast as |
|---|
| | 389 | * possible). */ |
|---|
| 389 | 390 | p_sys->b_pace_control = VLC_FALSE; |
|---|
| 390 | 391 | #endif |
|---|
| … | … | |
| 706 | 707 | case ACCESS_CAN_CONTROL_PACE: |
|---|
| 707 | 708 | pb_bool = (vlc_bool_t*)va_arg( args, vlc_bool_t* ); |
|---|
| | 709 | |
|---|
| | 710 | #if 0 /* Disable for now until we have a clock synchro algo |
|---|
| | 711 | * which works with something else than MPEG over UDP */ |
|---|
| 708 | 712 | *pb_bool = p_sys->b_pace_control; |
|---|
| | 713 | #endif |
|---|
| | 714 | *pb_bool = VLC_TRUE; |
|---|
| 709 | 715 | break; |
|---|
| 710 | 716 | |
|---|
| re3a434c |
re55b8a6 |
|
| 181 | 181 | case ACCESS_CAN_CONTROL_PACE: |
|---|
| 182 | 182 | pb_bool = (vlc_bool_t*)va_arg( args, vlc_bool_t* ); |
|---|
| | 183 | |
|---|
| | 184 | #if 0 /* Disable for now until we have a clock synchro algo |
|---|
| | 185 | * which works with something else than MPEG over UDP */ |
|---|
| 183 | 186 | *pb_bool = VLC_FALSE; |
|---|
| | 187 | #endif |
|---|
| | 188 | *pb_bool = VLC_TRUE; |
|---|
| 184 | 189 | break; |
|---|
| 185 | 190 | |
|---|
| re3a434c |
re55b8a6 |
|
| 264 | 264 | case ACCESS_CAN_CONTROL_PACE: |
|---|
| 265 | 265 | pb_bool = (vlc_bool_t*)va_arg( args, vlc_bool_t* ); |
|---|
| | 266 | |
|---|
| | 267 | #if 0 /* Disable for now until we have a clock synchro algo |
|---|
| | 268 | * which works with something else than MPEG over UDP */ |
|---|
| 266 | 269 | *pb_bool = VLC_FALSE; |
|---|
| | 270 | #endif |
|---|
| | 271 | *pb_bool = VLC_TRUE; |
|---|
| 267 | 272 | break; |
|---|
| 268 | 273 | |
|---|
| r5b32676 |
re55b8a6 |
|
| 823 | 823 | case DEMUX_CAN_CONTROL_PACE: |
|---|
| 824 | 824 | pb = (vlc_bool_t*)va_arg( args, vlc_bool_t * ); |
|---|
| | 825 | |
|---|
| | 826 | #if 0 /* Disable for now until we have a clock synchro algo |
|---|
| | 827 | * which works with something else than MPEG over UDP */ |
|---|
| 825 | 828 | *pb = VLC_FALSE; |
|---|
| | 829 | #endif |
|---|
| | 830 | *pb = VLC_TRUE; |
|---|
| 826 | 831 | return VLC_SUCCESS; |
|---|
| 827 | 832 | |
|---|