Use at least a quality of 44100

This commit is contained in:
Pierre Krieger 2015-09-27 19:21:10 +02:00
parent 8d46180986
commit 4173ba5a08

View file

@ -79,6 +79,11 @@ impl Engine {
return Some(f2); return Some(f2);
} }
// do not go below 44100 if possible
if f1.samples_rate.0 < 44100 {
return Some(f2);
}
// priviledge outputs with 2 channels for now // priviledge outputs with 2 channels for now
if f2.channels.len() == 2 && f1.channels.len() != 2 { if f2.channels.len() == 2 && f1.channels.len() != 2 {
return Some(f2); return Some(f2);