summaryrefslogtreecommitdiff
path: root/apps/codecs/mpc.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/codecs/mpc.c')
-rw-r--r--apps/codecs/mpc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/codecs/mpc.c b/apps/codecs/mpc.c
index bbe2d9943b..7388799ee8 100644
--- a/apps/codecs/mpc.c
+++ b/apps/codecs/mpc.c
@@ -108,7 +108,7 @@ enum codec_status codec_run(void)
108 * sample seek position from the file offset, the sampling frequency and 108 * sample seek position from the file offset, the sampling frequency and
109 * the bitrate. As the saved position is exactly calculated the reverse way 109 * the bitrate. As the saved position is exactly calculated the reverse way
110 * there is no loss of information except rounding. */ 110 * there is no loss of information except rounding. */
111 samplesdone = 100 * ((mpc_uint64_t)(ci->id3->offset * frequency) / byterate); 111 samplesdone = 100 * (((mpc_uint64_t)ci->id3->offset * frequency) / byterate);
112 112
113 /* Set up digital signal processing for correct number of channels */ 113 /* Set up digital signal processing for correct number of channels */
114 /* NOTE: current musepack format only allows for stereo files 114 /* NOTE: current musepack format only allows for stereo files