Lines Matching +full:codec +full:- +full:1
2 Creating codec to codec dai link for ALSA dapm
5 Mostly the flow of audio is always from CPU to codec so your system
9 --------- ---------
11 CPU -------> codec
13 --------- ---------
18 ---------
20 codec-2
22 ---------
24 dai-2
26 ---------- ---------
27 | | dai-1 | |
28 CPU -------> codec-1
30 ---------- ---------
32 dai-3
34 ---------
36 codec-3
38 ---------
40 Suppose codec-2 is a bluetooth chip and codec-3 is connected to
42 codec-2 will receive the audio data and the user wants to play that
43 audio through codec-3 without involving the CPU.This
44 aforementioned case is the ideal case when codec to codec
64 .name = "CPU-DSP",
65 .stream_name = "CPU-DSP",
66 .cpu_dai_name = "samsung-i2s.0",
67 .codec_name = "codec-2,
68 .codec_dai_name = "codec-2-dai_name",
69 .platform_name = "samsung-i2s.0",
72 .ignore_suspend = 1,
74 .num_c2c_params = 1,
77 .name = "DSP-CODEC",
78 .stream_name = "DSP-CODEC",
79 .cpu_dai_name = "wm0010-sdi2",
80 .codec_name = "codec-3,
81 .codec_dai_name = "codec-3-dai_name",
84 .ignore_suspend = 1,
86 .num_c2c_params = 1,
92 dai_link is a codec to codec connection.
95 and codec_dai capture widget for playback path and vice-versa is
101 In order to trigger this dai_link widget, a thin codec driver for
105 Make sure to name your corresponding cpu and codec playback and capture
109 A dai_link in a "simple-audio-card" will automatically be detected as
110 codec to codec when all DAIs on the link belong to codec components.
114 mostly useful for communication with simple fixed-function codecs, such