mirror of
https://github.com/Rockbox/rockbox.git
synced 2026-01-22 01:30:35 -05:00
Original author Melissa Autumn (https://codeberg.org/oopsallnaps/rockbox-hibyos) with contributions from Marc Aarts. Adaptation to Rockbox standards by Marc Aarts Change-Id: I09e5af7ba0a75c648e4b9fd424badc2d3665c943
17 lines
450 B
C
17 lines
450 B
C
#ifndef __HIBYLINUX_CODEC__
|
|
#define __HIBYLINUX_CODEC__
|
|
|
|
#define AUDIOHW_CAPS (FILTER_ROLL_OFF_CAP)
|
|
AUDIOHW_SETTING(VOLUME, "dB", 1, 5, -102*10, 0, -30*10)
|
|
#endif
|
|
|
|
//#define AUDIOHW_MUTE_ON_STOP
|
|
#define AUDIOHW_MUTE_ON_SRATE_CHANGE
|
|
//#define AUDIOHW_NEEDS_INITIAL_UNMUTE
|
|
|
|
AUDIOHW_SETTING(FILTER_ROLL_OFF, "", 0, 1, 0, 4, 0)
|
|
#define AUDIOHW_HAVE_SHORT2_ROLL_OFF
|
|
|
|
void audiohw_mute(int mute);
|
|
void hiby_set_output(int ps);
|
|
int hiby_get_outputs(void);
|