mirror of
https://github.com/alsa-project/alsa-lib.git
synced 2026-02-07 04:06:06 -05:00
The HDMI drivers set an uniform PCM names. Use ELD (EDID) to obtain
the HDMI device name and send this string to applications for a better
user experience.
Example (aplay -l):
card 1: PCH [HDA Intel PCH], device 8: HDMI 2 [HDMI 2]
Subdevices: 1/1
vs improved:
card 1: PCH [HDA Intel PCH], device 8: HDMI 2 [Philips 272P4]
Subdevices: 1/1
Fixes: https://github.com/alsa-project/alsa-lib/issues/209
Signed-off-by: Jaroslav Kysela <perex@perex.cz>
22 lines
512 B
Makefile
22 lines
512 B
Makefile
EXTRA_LTLIBRARIES = libcontrol.la
|
|
|
|
libcontrol_la_SOURCES = cards.c tlv.c eld.c namehint.c hcontrol.c \
|
|
control.c control_hw.c control_empty.c \
|
|
setup.c ctlparse.c \
|
|
control_plugin.c control_symbols.c
|
|
if BUILD_CTL_PLUGIN_REMAP
|
|
libcontrol_la_SOURCES += control_remap.c
|
|
endif
|
|
if BUILD_CTL_PLUGIN_SHM
|
|
libcontrol_la_SOURCES += control_shm.c
|
|
endif
|
|
if BUILD_CTL_PLUGIN_EXT
|
|
libcontrol_la_SOURCES += control_ext.c
|
|
endif
|
|
|
|
noinst_HEADERS = control_local.h
|
|
|
|
all: libcontrol.la
|
|
|
|
|
|
AM_CPPFLAGS=-I$(top_srcdir)/include
|