src/flac/decode.c : Remove repeated code block.

This commit is contained in:
Erik de Castro Lopo 2013-03-02 19:06:20 +11:00
parent c8adb080b0
commit 2227ec7936

View File

@ -360,12 +360,6 @@ FLAC__bool DecoderSession_process(DecoderSession *d)
else if(d->channels == 8) {
d->channel_mask = 0x063f;
}
else if(d->channels == 7) {
d->channel_mask = 0x070f;
}
else if(d->channels == 8) {
d->channel_mask = 0x063f;
}
}
/* write the WAVE/AIFF headers if necessary */