tizenaudio-util: Fix loading errors 47/276947/2 accepted/tizen/unified/20220628.133453 submit/tizen/20220628.075152
authorJaechul Lee <jcsing.lee@samsung.com>
Tue, 28 Jun 2022 07:42:58 +0000 (16:42 +0900)
committerJaechul Lee <jcsing.lee@samsung.com>
Tue, 28 Jun 2022 07:44:34 +0000 (16:44 +0900)
This patch fixes undefined symbol: pa_tz_util_pcm_open_by_*

[Version] 15.0.22
[Issue Type] Runtime error

Change-Id: I7c172938d4480348445458a56e1ba9a8ddf14de2
Signed-off-by: Jaechul Lee <jcsing.lee@samsung.com>
packaging/pulseaudio-modules-tizen.spec
src/tizenaudio-util.c

index 1b6d631..2eae259 100644 (file)
@@ -2,7 +2,7 @@
 
 Name:             pulseaudio-modules-tizen
 Summary:          Pulseaudio modules for Tizen
-Version:          15.0.21
+Version:          15.0.22
 Release:          0
 Group:            Multimedia/Audio
 License:          LGPL-2.1+
index 17be479..c4fbc49 100644 (file)
@@ -105,7 +105,7 @@ static int parse_to_get_device(const char *device_string, char *device, int n, c
     return 0;
 }
 
-int32_t pa_hal_interface_pcm_open_by_dev_id(pa_hal_interface *h,
+int32_t pa_tz_util_pcm_open_by_dev_id(pa_hal_interface *h,
                                             const char *dev_id,
                                             char **device_string,
                                             pa_pcm_params_t *param,
@@ -173,7 +173,7 @@ int32_t pa_hal_interface_pcm_open_by_dev_id(pa_hal_interface *h,
     return -1;
 }
 
-int32_t pa_hal_interface_pcm_open_by_device(pa_hal_interface *h,
+int32_t pa_tz_util_pcm_open_by_device(pa_hal_interface *h,
                                             const char* dev,
                                             pa_pcm_params_t *param,
                                             pcm_handle *pcm_h,