diff options
author | Jaechul Lee <jcsing.lee@samsung.com> | 2022-06-24 14:18:46 +0900 |
---|---|---|
committer | Jaechul Lee <jcsing.lee@samsung.com> | 2022-06-24 14:28:19 +0900 |
commit | 1b93dc2a684ea4dfd9b1cecbda564adad3bc8fbc (patch) | |
tree | 45a0eb524c91e85ab72741a696de48ff23cf915a /tizen-audio-pcm.c | |
parent | aa2fd6a0ca7193622a2c65b4a0e6045bf5eaac1a (diff) | |
download | audio-hal-sc7727-tizen.tar.gz audio-hal-sc7727-tizen.tar.bz2 audio-hal-sc7727-tizen.zip |
Change get_params prototypetizen_8.0_m2_releasetizen_7.0_m2_releasesubmit/tizen/20220628.002620submit/tizen/20220627.084702submit/tizen/20220627.045454submit/tizen/20220627.045137accepted/tizen/unified/20220628.133549accepted/tizen/8.0/unified/20231005.092534accepted/tizen/7.0/unified/hotfix/20221116.104516accepted/tizen/7.0/unified/20221110.061019tizen_8.0tizen_7.0_hotfixtizen_7.0tizenaccepted/tizen_unifiedaccepted/tizen_8.0_unifiedaccepted/tizen_7.0_unified_hotfixaccepted/tizen_7.0_unified
prototype was changed for get_param to use single pointer
[Version] 0.1.43
[Issue Type] Update
Change-Id: I263e1cb7a8a6431c6fbfc2941da0425a4810e245
Signed-off-by: Jaechul Lee <jcsing.lee@samsung.com>
Diffstat (limited to 'tizen-audio-pcm.c')
-rw-r--r-- | tizen-audio-pcm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tizen-audio-pcm.c b/tizen-audio-pcm.c index 74c062e..a51490a 100644 --- a/tizen-audio-pcm.c +++ b/tizen-audio-pcm.c @@ -178,7 +178,7 @@ audio_return_e audio_pcm_recover(void *audio_handle, void *pcm_handle, int reven return audio_ret; } -audio_return_e audio_pcm_get_params(void *audio_handle, void *pcm_handle, uint32_t direction, void **sample_spec, uint32_t *period_size, uint32_t *periods) +audio_return_e audio_pcm_get_params(void *audio_handle, void *pcm_handle, uint32_t direction, void *sample_spec, uint32_t *period_size, uint32_t *periods) { audio_return_e audio_ret = AUDIO_RET_OK; |