Re: [flac-dev] Wrong warning in encoder for 24bits WAV

2014-03-20 Thread Olivier Tristan
I never seen this before. Thanks a lot. Le 20/03/2014 16:45, lvqcl a écrit : > Olivier Tristan wrote: > >> I've just faced a wrong warning trying to encode a 24 bits WAV file >> >> if(wFormatTag == 1) { >> if(bps != 8 && bps != 16) { >> if(bps == 24 || bps

Re: [flac-dev] Wrong warning in encoder for 24bits WAV

2014-03-20 Thread lvqcl
Olivier Tristan wrote: > I've just faced a wrong warning trying to encode a 24 bits WAV file > > if(wFormatTag == 1) { > if(bps != 8 && bps != 16) { > if(bps == 24 || bps == 32) { > /* let these slide with a warning since they're > una

[flac-dev] Wrong warning in encoder for 24bits WAV

2014-03-20 Thread Olivier Tristan
Hi Guys, I've just faced a wrong warning trying to encode a 24 bits WAV file if(wFormatTag == 1) { if(bps != 8 && bps != 16) { if(bps == 24 || bps == 32) { /* let these slide with a warning since they're unambiguous */