Changeset 13ec57548cb99619b28d5dadc9c87a258ee9d9cf
- Timestamp:
- 01/03/07 01:06:21
(2 years ago)
- Author:
- Sigmund Augdal Helberg <sigmunau@videolan.org>
- git-committer:
- Sigmund Augdal Helberg <sigmunau@videolan.org> 1172707581 +0000
- git-parent:
[9c1758ae820ec9cc6848654fff05c5ac6ea024c8]
- git-author:
- Sigmund Augdal Helberg <sigmunau@videolan.org> 1172707581 +0000
- Message:
none-sematic changes:
clock.c: replace a magic number with the appropriate constant
vlc_include.h: fix a comment to match reality
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| rd83a78c |
r13ec575 |
|
| 328 | 328 | #define INPUT_RATE_DEFAULT 1000 |
|---|
| 329 | 329 | #define INPUT_RATE_MIN 125 /* Up to 8/1 */ |
|---|
| 330 | | #define INPUT_RATE_MAX 32000 /* Up to 1/8 */ |
|---|
| | 330 | #define INPUT_RATE_MAX 32000 /* Up to 1/32 */ |
|---|
| 331 | 331 | |
|---|
| 332 | 332 | /* i_update field of access_t/demux_t */ |
|---|
| r6bbeeca |
r13ec575 |
|
| 93 | 93 | * (mtime_t)300; |
|---|
| 94 | 94 | i_sysdate /= 27; |
|---|
| 95 | | i_sysdate /= 1000; |
|---|
| | 95 | i_sysdate /= INPUT_RATE_DEFAULT; |
|---|
| 96 | 96 | i_sysdate += (mtime_t)cl->sysdate_ref; |
|---|
| 97 | 97 | } |
|---|