aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/github/daneren2005/dsub/service/DownloadFile.java5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/github/daneren2005/dsub/service/DownloadFile.java b/src/github/daneren2005/dsub/service/DownloadFile.java
index 1f962707..6e1efcf6 100644
--- a/src/github/daneren2005/dsub/service/DownloadFile.java
+++ b/src/github/daneren2005/dsub/service/DownloadFile.java
@@ -106,6 +106,11 @@ public class DownloadFile implements BufferFile {
} else {
br = 320;
}
+ } else if(song.getSuffix() != null && song.getSuffix().equals(song.getTranscodedSuffix()) {
+ // If just downsampling, don't try to upsample (ie: 128 kpbs -> 192 kpbs)
+ if(song.getBitRate() != null && br > song.getBitRate()) {
+ br = song.getBitRate();
+ }
}
return br;