fixed a bug in filename corrector, which would erroneously sort filenames alpabeticaly when it should not.

added an option to automaticly detect and remove extra 4206 samples, added by some erroneous flac coders.
This commit is contained in:
chudov
2008-11-08 14:59:50 +00:00
parent 9844a654ce
commit ad057576bc
5 changed files with 368 additions and 289 deletions

View File

@@ -62,6 +62,7 @@ namespace JDP {
chkHDCDStopLooking.Checked = _config.wait750FramesForHDCD;
chkCreateM3U.Checked = _config.createM3U;
chkCreateCUEFileWhenEmbedded.Checked = _config.createCUEFileWhenEmbedded;
chkTruncateExtra4206Samples.Checked = _config.truncate4608ExtraSamples;
}
private void frmSettings_FormClosing(object sender, FormClosingEventArgs e) {
@@ -125,6 +126,7 @@ namespace JDP {
_config.decodeHDCD = chkHDCDDecode.Checked;
_config.createM3U = chkCreateM3U.Checked;
_config.createCUEFileWhenEmbedded = chkCreateCUEFileWhenEmbedded.Checked;
_config.truncate4608ExtraSamples = chkTruncateExtra4206Samples.Checked;
}
private void chkArFixOffset_CheckedChanged(object sender, EventArgs e)