diff options
author | Sangchul Lee <sc11.lee@samsung.com> | 2016-01-08 18:12:38 +0900 |
---|---|---|
committer | Sangchul Lee <sc11.lee@samsung.com> | 2016-01-08 18:15:06 +0900 |
commit | b358ae3f689a2ec5c01036a74def54ab9fa15366 (patch) | |
tree | 1a8b0835e08301eb7e73b13eccdacbe2b6f7eb8d | |
parent | 0a60c4614c53fc9dc99389f0ada0aedc60238c98 (diff) | |
download | audio-hal-max98090-accepted/tizen_wearable.tar.gz audio-hal-max98090-accepted/tizen_wearable.tar.bz2 audio-hal-max98090-accepted/tizen_wearable.zip |
Revise error enumerationsubmit/tizen_ivi/20160217.000001submit/tizen_ivi/20160217.000000submit/tizen/20160111.114534accepted/tizen/wearable/20160111.230403accepted/tizen/tv/20160111.230346accepted/tizen/mobile/20160111.230312accepted/tizen/ivi/20160218.022902accepted/tizen_wearableaccepted/tizen_mobile
[Version] 0.2.13
[Profile] Mobile
[Issue Type] Revise
Change-Id: I5c2f1961bcf70b7b45384e0c9d5fefc47f603891
Signed-off-by: Sangchul Lee <sc11.lee@samsung.com>
-rw-r--r-- | packaging/audio-hal-max98090.spec | 2 | ||||
-rw-r--r-- | tizen-audio.h | 5 |
2 files changed, 5 insertions, 2 deletions
diff --git a/packaging/audio-hal-max98090.spec b/packaging/audio-hal-max98090.spec index 1d52f14..d1a745a 100644 --- a/packaging/audio-hal-max98090.spec +++ b/packaging/audio-hal-max98090.spec @@ -1,6 +1,6 @@ Name: audio-hal-max98090 Summary: TIZEN Audio HAL for MAX98090 -Version: 0.2.12 +Version: 0.2.13 Release: 0 Group: System/Libraries License: Apache-2.0 diff --git a/tizen-audio.h b/tizen-audio.h index 8dd3b44..a0427fc 100644 --- a/tizen-audio.h +++ b/tizen-audio.h @@ -30,7 +30,10 @@ typedef enum audio_return { AUDIO_ERR_RESOURCE = (int32_t)0x80001001, AUDIO_ERR_PARAMETER = (int32_t)0x80001002, AUDIO_ERR_IOCTL = (int32_t)0x80001003, - AUDIO_ERR_NOT_IMPLEMENTED = (int32_t)0x80001004, + AUDIO_ERR_INVALID_STATE = (int32_t)0x80001004, + AUDIO_ERR_INTERNAL = (int32_t)0x80001005, + + AUDIO_ERR_NOT_IMPLEMENTED = (int32_t)0x80001100, } audio_return_t ; typedef enum audio_direction { |