参照元

説明

参考

実装

/* SoC machine DAI configuration, glues a codec and cpu DAI together */
struct snd_soc_dai_link  {
	char *name;			/* Codec name */
	char *stream_name;		/* Stream name */

	/* DAI */
	struct snd_soc_dai *codec_dai;
	struct snd_soc_dai *cpu_dai;
	/* machine stream operations */
	struct snd_soc_ops *ops;
	/* codec/machine specific init - e.g. add machine controls */
	int (*init)(struct snd_soc_codec *codec);

	/* Symmetry requirements */
	unsigned int symmetric_rates:1;

	/* Symmetry data - only valid if symmetry is being enforced */
	unsigned int rate;

	/* DAI pcm */
	struct snd_pcm *pcm;
};

コメント


トップ   編集 凍結 差分 履歴 添付 複製 名前変更 リロード   新規 一覧 検索 最終更新   ヘルプ   最終更新のRSS
Last-modified: 2014-09-13 (土) 08:26:43