summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorThom Johansen <thomj@rockbox.org>2006-03-05 17:23:34 +0000
committerThom Johansen <thomj@rockbox.org>2006-03-05 17:23:34 +0000
commit4594ad460592ef56f2f1cdc5de132152257dfd5a (patch)
tree69b98cc547c9a4b4671a2cededafe0997cac9cba /apps
parent480ab7fc6f1e769a099c10f498b30f62fc8ed125 (diff)
downloadrockbox-4594ad460592ef56f2f1cdc5de132152257dfd5a.tar.gz
rockbox-4594ad460592ef56f2f1cdc5de132152257dfd5a.zip
Musepack files are always VBR.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8910 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r--apps/metadata.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/metadata.c b/apps/metadata.c
index 531969b8aa..5481cbef58 100644
--- a/apps/metadata.c
+++ b/apps/metadata.c
@@ -1238,6 +1238,7 @@ static bool get_musepack_metadata(int fd, struct mp3entry *id3)
1238 return false; 1238 return false;
1239 } 1239 }
1240 1240
1241 id3->vbr = true;
1241 /* Estimate bitrate, we should probably subtract the various header sizes 1242 /* Estimate bitrate, we should probably subtract the various header sizes
1242 here for super-accurate results */ 1243 here for super-accurate results */
1243 id3->length = samples/id3->frequency*1000; 1244 id3->length = samples/id3->frequency*1000;