mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-10-29 05:40:23 -04:00
add support for MPEG-2 AAC pass-through
Some S/PDIF receivers have AAC decoder. Only MPEG2 AAC is added, as I don't have MPEG-4 AAC decoder and cannot test it.
This commit is contained in:
parent
0785165e5c
commit
53807e4a28
2 changed files with 4 additions and 0 deletions
|
|
@ -47,6 +47,7 @@ static const char* const _encoding_str_table[]= {
|
|||
[PA_ENCODING_EAC3_IEC61937] = "eac3-iec61937",
|
||||
[PA_ENCODING_MPEG_IEC61937] = "mpeg-iec61937",
|
||||
[PA_ENCODING_DTS_IEC61937] = "dts-iec61937",
|
||||
[PA_ENCODING_MPEG2_AAC_IEC61937] = "mpeg2-aac-iec61937",
|
||||
[PA_ENCODING_ANY] = "any",
|
||||
};
|
||||
|
||||
|
|
|
|||
|
|
@ -55,6 +55,9 @@ typedef enum pa_encoding {
|
|||
PA_ENCODING_DTS_IEC61937,
|
||||
/**< DTS data encapsulated in IEC 61937 header/padding */
|
||||
|
||||
PA_ENCODING_MPEG2_AAC_IEC61937,
|
||||
/**< MPEG-2 AAC data encapsulated in IEC 61937 header/padding. \since 4.0 */
|
||||
|
||||
PA_ENCODING_MAX,
|
||||
/**< Valid encoding types must be less than this value */
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue