diff options
author | Jean-Philippe Bernardy <jeanphilippe.bernardy@gmail.com> | 2005-02-11 18:41:40 +0000 |
---|---|---|
committer | Jean-Philippe Bernardy <jeanphilippe.bernardy@gmail.com> | 2005-02-11 18:41:40 +0000 |
commit | 2860c5e70ae6c4ded2a662b8eed5996e381ed014 (patch) | |
tree | 50292902d4ab7dfb64447cfbf861acc3df04a153 /firmware | |
parent | 6dca87e60cb54073c5a0b26b233bfc239b763d6b (diff) |
long policy
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5914 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware')
-rw-r--r-- | firmware/mpeg.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/firmware/mpeg.c b/firmware/mpeg.c index 3223cabdbe..e2bb75a62f 100644 --- a/firmware/mpeg.c +++ b/firmware/mpeg.c @@ -326,9 +326,9 @@ static bool is_playing; /* We are (attempting to) playing MP3 files */ static bool filling; /* We are filling the buffer with data from disk */ static bool dma_underrun; /* True when the DMA has stopped because of slow disk reading (read error, shaking) */ -static int low_watermark; /* Dynamic low watermark level */ -static int low_watermark_margin; /* Extra time in seconds for watermark */ -static int lowest_watermark_level; /* Debug value to observe the buffer +static long low_watermark; /* Dynamic low watermark level */ +static long low_watermark_margin; /* Extra time in seconds for watermark */ +static long lowest_watermark_level; /* Debug value to observe the buffer usage */ #if CONFIG_HWCODEC == MAS3587F static bool is_recording; /* We are recording */ |