Changeset 13ec57548cb99619b28d5dadc9c87a258ee9d9cf

Show
Ignore:
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
  • include/vlc_input.h

    rd83a78c r13ec575  
    328328#define INPUT_RATE_DEFAULT  1000 
    329329#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 */ 
    331331 
    332332/* i_update field of access_t/demux_t */ 
  • src/input/clock.c

    r6bbeeca r13ec575  
    9393                        * (mtime_t)300; 
    9494        i_sysdate /= 27; 
    95         i_sysdate /= 1000
     95        i_sysdate /= INPUT_RATE_DEFAULT
    9696        i_sysdate += (mtime_t)cl->sysdate_ref; 
    9797    }