summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--firmware/mpeg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/mpeg.c b/firmware/mpeg.c
index e1312c7..d191a30 100644
--- a/firmware/mpeg.c
+++ b/firmware/mpeg.c
@@ -509,7 +509,7 @@ static void recalculate_watermark(int bitrate)
/* A bitrate of 0 probably means empty VBR header. We play safe
and set a high threshold */
if(bitrate == 0)
- bitrate = 320000;
+ bitrate = 320;
bytes_per_sec = bitrate * 1000 / 8;