summaryrefslogtreecommitdiff
path: root/firmware
diff options
context:
space:
mode:
Diffstat (limited to 'firmware')
-rw-r--r--firmware/mpeg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/mpeg.c b/firmware/mpeg.c
index e1312c7399..d191a30149 100644
--- a/firmware/mpeg.c
+++ b/firmware/mpeg.c
@@ -509,7 +509,7 @@ static void recalculate_watermark(int bitrate)
509 /* A bitrate of 0 probably means empty VBR header. We play safe 509 /* A bitrate of 0 probably means empty VBR header. We play safe
510 and set a high threshold */ 510 and set a high threshold */
511 if(bitrate == 0) 511 if(bitrate == 0)
512 bitrate = 320000; 512 bitrate = 320;
513 513
514 bytes_per_sec = bitrate * 1000 / 8; 514 bytes_per_sec = bitrate * 1000 / 8;
515 515