Skip to content

Commit

Permalink
topology2: doc: input_audio_format.conf: Translate comments to Doxygen
Browse files Browse the repository at this point in the history
Signed-off-by: Jyri Sarha <[email protected]>
  • Loading branch information
Jyri Sarha authored and lgirdwood committed Oct 6, 2023
1 parent 215d7b3 commit 649ac7d
Showing 1 changed file with 24 additions and 21 deletions.
45 changes: 24 additions & 21 deletions tools/topology/topology2/include/common/input_audio_format.conf
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
# Class definition for input pin audio format object
# audio_format objects can be instantiated as:
#
# Object.Base.input_audio_format."0" {
# in_rate 48000
# in_sample_container_size 16
# in_valid_bit_depth 16
# in_interleaving_style "interleaved"

# }
#
## \struct input_audio_format
## \brief Volume playback pipeline
##
## Class definition for input pin audio format object
## audio_format objects can be instantiated as:
##
## Object.Base.input_audio_format."0" {
## in_rate 48000
## in_sample_container_size 16
## in_valid_bit_depth 16
## in_interleaving_style "interleaved"
## }
##

Class.Base."input_audio_format" {

Expand All @@ -20,25 +22,25 @@ Class.Base."input_audio_format" {
token_ref "cavs_audio_format.word"
}

# input sampling rate
## input sampling rate
DefineAttribute."in_rate" {
# Token set reference name
token_ref "cavs_audio_format.word"
}

# input bit depth
## input bit depth
DefineAttribute."in_bit_depth" {
# Token set reference name
token_ref "cavs_audio_format.word"
}

# input valid bit depth
## input valid bit depth
DefineAttribute."in_valid_bit_depth" {
# Token set reference name
token_ref "cavs_audio_format.word"
}

# input channel count
## input channel count
DefineAttribute."in_channels" {
# Token set reference name
token_ref "cavs_audio_format.word"
Expand All @@ -48,19 +50,19 @@ Class.Base."input_audio_format" {
}
}

# input channel map
## input channel map
DefineAttribute."in_ch_map" {
# Token set reference name
token_ref "cavs_audio_format.word"
}

# input channel config
## input channel config
DefineAttribute."in_ch_cfg" {
# Token set reference name
token_ref "cavs_audio_format.word"
}

# input interleaving style
## input interleaving style
DefineAttribute."in_interleaving_style" {
type "string"
# Token set reference name
Expand All @@ -77,13 +79,14 @@ Class.Base."input_audio_format" {
}
}

# input format config
## input format config
DefineAttribute."in_fmt_cfg" {
# Token set reference name
token_ref "cavs_audio_format.word"
}

# input sample_type
## Input sample_type.
## Valid values for sample type are defined in common_definitions.conf.
DefineAttribute."in_sample_type" {
type string
# Token set reference name
Expand All @@ -100,7 +103,7 @@ Class.Base."input_audio_format" {
}

#
# input buffer size
## input buffer size
#
DefineAttribute."ibs" {
# Token set reference name and type
Expand Down

0 comments on commit 649ac7d

Please sign in to comment.