diff options
Diffstat (limited to 'apps/codecs/flac.c')
-rw-r--r-- | apps/codecs/flac.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/codecs/flac.c b/apps/codecs/flac.c index 4202763962..90d782e685 100644 --- a/apps/codecs/flac.c +++ b/apps/codecs/flac.c | |||
@@ -428,7 +428,6 @@ enum codec_status codec_main(void) | |||
428 | ci->configure(CODEC_SET_FILEBUF_WATERMARK, (int *)(1024*512)); | 428 | ci->configure(CODEC_SET_FILEBUF_WATERMARK, (int *)(1024*512)); |
429 | ci->configure(CODEC_SET_FILEBUF_CHUNKSIZE, (int *)(1024*128)); | 429 | ci->configure(CODEC_SET_FILEBUF_CHUNKSIZE, (int *)(1024*128)); |
430 | 430 | ||
431 | ci->configure(DSP_SET_STEREO_MODE, (long *)STEREO_NONINTERLEAVED); | ||
432 | ci->configure(DSP_SET_SAMPLE_DEPTH, (int *)(FLAC_OUTPUT_DEPTH-1)); | 431 | ci->configure(DSP_SET_SAMPLE_DEPTH, (int *)(FLAC_OUTPUT_DEPTH-1)); |
433 | 432 | ||
434 | next_track: | 433 | next_track: |
@@ -452,6 +451,8 @@ enum codec_status codec_main(void) | |||
452 | ci->sleep(1); | 451 | ci->sleep(1); |
453 | 452 | ||
454 | ci->configure(DSP_SWITCH_FREQUENCY, (long *)(ci->id3->frequency)); | 453 | ci->configure(DSP_SWITCH_FREQUENCY, (long *)(ci->id3->frequency)); |
454 | ci->configure(DSP_SET_STEREO_MODE, (long *) (fc.channels == 1 | ||
455 | ? STEREO_MONO : STEREO_NONINTERLEAVED)); | ||
455 | codec_set_replaygain(ci->id3); | 456 | codec_set_replaygain(ci->id3); |
456 | 457 | ||
457 | if (samplesdone) { | 458 | if (samplesdone) { |