summaryrefslogtreecommitdiff
path: root/lib/igt_alsa.h
diff options
context:
space:
mode:
authorSimon Ser <simon.ser@intel.com>2019-05-14 11:06:12 +0300
committerSimon Ser <simon.ser@intel.com>2019-05-14 14:51:38 +0300
commit19dcce36a1c31394bc73cf728f50dbbdc6d01704 (patch)
tree101e2781d8d8cd4be2f7a0760e8b8a8f0e3f88f3 /lib/igt_alsa.h
parent512aad1e6a3c0725a92fb8ccd2f7162caa81a628 (diff)
lib/igt_alsa: remove input support
This is not used anymore because the old audio tests have been removed. Signed-off-by: Simon Ser <simon.ser@intel.com> Reviewed-by: Arkadiusz Hiler <arkadiusz.hiler@intel.com>
Diffstat (limited to 'lib/igt_alsa.h')
-rw-r--r--lib/igt_alsa.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/lib/igt_alsa.h b/lib/igt_alsa.h
index 5c804b46..a10985ff 100644
--- a/lib/igt_alsa.h
+++ b/lib/igt_alsa.h
@@ -36,23 +36,14 @@ struct alsa;
bool alsa_has_exclusive_access(void);
struct alsa *alsa_init(void);
int alsa_open_output(struct alsa *alsa, const char *device_name);
-int alsa_open_input(struct alsa *alsa, const char *device_name);
void alsa_close_output(struct alsa *alsa);
-void alsa_close_input(struct alsa *alsa);
bool alsa_test_output_configuration(struct alsa *alsa, int channels,
int sampling_rate);
-bool alsa_test_input_configuration(struct alsa *alsa, int channels,
- int sampling_rate);
void alsa_configure_output(struct alsa *alsa, int channels,
int sampling_rate);
-void alsa_configure_input(struct alsa *alsa, int channels,
- int sampling_rate);
void alsa_register_output_callback(struct alsa *alsa,
int (*callback)(void *data, short *buffer, int samples),
void *callback_data, int samples_trigger);
-void alsa_register_input_callback(struct alsa *alsa,
- int (*callback)(void *data, short *buffer, int samples),
- void *callback_data, int samples_trigger);
int alsa_run(struct alsa *alsa, int duration_ms);
#endif