Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions arm-wt-22k/host_src/eas.h
Original file line number Diff line number Diff line change
Expand Up @@ -383,11 +383,12 @@ EAS_PUBLIC EAS_RESULT EAS_GetPriority (EAS_DATA_HANDLE pEASData, EAS_HANDLE stre
*----------------------------------------------------------------------------
* Purpose:
* Set the master volume for the mixer. The default volume setting is
* 90 (-10 dB). The volume range is 0 to 100 in 1dB increments.
* 100 (+0 dB). The volume range is 0 to EAS_MAX_VOLUME=196 in 1dB increments.
*
* Inputs:
* pEASData - pointer to overall EAS data structure
* volume - the desired master volume
* streamHandle - file or stream handle (may be NULL)
* volume - the desired master volume (EAS_MAX_VOLUME = 196 is max)
*
* Outputs:
*
Expand All @@ -407,9 +408,10 @@ EAS_PUBLIC EAS_RESULT EAS_SetVolume (EAS_DATA_HANDLE pEASData, EAS_HANDLE stream
*
* Inputs:
* pEASData - pointer to overall EAS data structure
* volume - the desired master volume
* streamHandle - file or stream handle
*
* Outputs:
* volume - the current master volume
*
*
* Side Effects:
Expand Down
10 changes: 5 additions & 5 deletions arm-wt-22k/lib_src/eas_public.c
Original file line number Diff line number Diff line change
Expand Up @@ -1908,8 +1908,8 @@ EAS_PUBLIC EAS_RESULT EAS_GetPriority (EAS_DATA_HANDLE pEASData, EAS_HANDLE pStr
*
* Inputs:
* pEASData - pointer to overall EAS data structure
* volume - the desired master gain (100 is max)
* handle - file or stream handle
* pStream - file or stream handle (may be NULL)
* volume - the desired master gain (EAS_MAX_VOLUME = 196 is max)
*
* Outputs:
*
Expand Down Expand Up @@ -1963,14 +1963,14 @@ EAS_PUBLIC EAS_RESULT EAS_SetVolume (EAS_DATA_HANDLE pEASData, EAS_HANDLE pStrea
*----------------------------------------------------------------------------
* Purpose:
* Returns the master volume for the synthesizer. The default volume setting is
* 50. The volume range is 0 to 100;
* 100 (+0 dB). The volume range is 0 to 196;
*
* Inputs:
* pEASData - pointer to overall EAS data structure
* volume - the desired master volume
* handle - file or stream handle
* pStream - file or stream handle
*
* Outputs:
* volume - the current master volume
*
*
* Side Effects:
Expand Down