diff options
author | Jaechul Lee <jcsing.lee@samsung.com> | 2022-06-24 14:30:55 +0900 |
---|---|---|
committer | Jaechul Lee <jcsing.lee@samsung.com> | 2022-06-24 14:30:55 +0900 |
commit | 0fb16878cbf300dc82be9742213090d6f9a20d99 (patch) | |
tree | a9c9a2fbde85092672f494331826aadfcb5933a9 /tizen-audio-pcm.c | |
parent | 8212e0c6390350248cd1b75e47e683db47021598 (diff) | |
download | audio-hal-exynos9110-tizen_8.0.tar.gz audio-hal-exynos9110-tizen_8.0.tar.bz2 audio-hal-exynos9110-tizen_8.0.zip |
Change get_params prototypetizen_8.0_m2_releasetizen_7.0_m2_releasesubmit/tizen/20220628.002620submit/tizen/20220627.084702submit/tizen/20220627.045454submit/tizen/20220627.045126accepted/tizen/unified/20220628.133542accepted/tizen/8.0/unified/20231005.092524accepted/tizen/7.0/unified/hotfix/20221116.104503accepted/tizen/7.0/unified/20221110.060053tizen_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.13
[Issue Type] Update
Change-Id: I66fbc4d240f87e707e9e5cf006ec42c7c81f40af
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 bf85ede..486a88a 100644 --- a/tizen-audio-pcm.c +++ b/tizen-audio-pcm.c @@ -165,7 +165,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; |