summaryrefslogtreecommitdiff
path: root/firmware/mpeg.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/mpeg.c')
-rw-r--r--firmware/mpeg.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/firmware/mpeg.c b/firmware/mpeg.c
index d191a30149..bd90e9f1d6 100644
--- a/firmware/mpeg.c
+++ b/firmware/mpeg.c
@@ -2101,9 +2101,11 @@ static void init_recording(void)
2101 /* Copy left channel to right (mono mode) */ 2101 /* Copy left channel to right (mono mode) */
2102 mas_codec_writereg(8, 0x8000); 2102 mas_codec_writereg(8, 0x8000);
2103 2103
2104 /* ADC scale 100%, DSP scale 0% */ 2104 /* ADC scale 0%, DSP scale 100%
2105 mas_codec_writereg(6, 0x4000); 2105 We use the DSP output for monitoring, because it works with all
2106 mas_codec_writereg(7, 0x0000); 2106 sources including S/PDIF */
2107 mas_codec_writereg(6, 0x0000);
2108 mas_codec_writereg(7, 0x4000);
2107 2109
2108 /* No mute */ 2110 /* No mute */
2109 val = 0; 2111 val = 0;