summaryrefslogtreecommitdiff
path: root/firmware/mpeg.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/mpeg.c')
-rw-r--r--firmware/mpeg.c6
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 */
326static bool filling; /* We are filling the buffer with data from disk */ 326static bool filling; /* We are filling the buffer with data from disk */
327static bool dma_underrun; /* True when the DMA has stopped because of 327static bool dma_underrun; /* True when the DMA has stopped because of
328 slow disk reading (read error, shaking) */ 328 slow disk reading (read error, shaking) */
329static int low_watermark; /* Dynamic low watermark level */ 329static long low_watermark; /* Dynamic low watermark level */
330static int low_watermark_margin; /* Extra time in seconds for watermark */ 330static long low_watermark_margin; /* Extra time in seconds for watermark */
331static int lowest_watermark_level; /* Debug value to observe the buffer 331static long lowest_watermark_level; /* Debug value to observe the buffer
332 usage */ 332 usage */
333#if CONFIG_HWCODEC == MAS3587F 333#if CONFIG_HWCODEC == MAS3587F
334static bool is_recording; /* We are recording */ 334static bool is_recording; /* We are recording */