preprocessor: Fix wrong error message 14/304414/1 accepted/tizen/unified/20240119.154722 accepted/tizen/unified/toolchain/20240311.065508 accepted/tizen/unified/x/20240205.064057
authorJaechul Lee <jcsing.lee@samsung.com>
Wed, 17 Jan 2024 04:50:05 +0000 (13:50 +0900)
committerJaechul Lee <jcsing.lee@samsung.com>
Wed, 17 Jan 2024 04:50:51 +0000 (13:50 +0900)
[Version] 15.0.76
[Issue Type] Update

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

index ddd4f59794a0bee2a6556467d1c71b306066f74e..157bb2ce2bf345ba24e21b28fbdfa9ef7295702e 100644 (file)
@@ -2,7 +2,7 @@
 
 Name:             pulseaudio-modules-tizen
 Summary:          Pulseaudio modules for Tizen
-Version:          15.0.75
+Version:          15.0.76
 Release:          0
 Group:            Multimedia/Audio
 License:          LGPL-2.1+
index c96ddd1960ffd3b9bc38077afc2be91d59385fbf..e50e57fab59ff367eb4665ab21629a724d9ed121 100644 (file)
@@ -316,7 +316,7 @@ static pa_processor_holder *build_processor_holder(pa_core *core, pa_source_outp
         processor = pa_processor_new(core, process_usec / PA_USEC_PER_MSEC,
                                             &data->sample_spec, method);
         if (!processor) {
-            pa_log_error("Failed to create pa_processor. preprocessor(aec) will be disabled");
+            pa_log_error("Failed to create pa_processor. preprocessor(%s) will be disabled", processor_str);
             goto fail;
         }
 
index c2bdce8f5e3bdaa1e67267208e579239d34d8db1..fd5b97c6255c9b879230b26ebc1146bf5b30f55d 100644 (file)
@@ -173,7 +173,7 @@ pa_processor *pa_processor_new(pa_core *core,
     if (!processor->audio_effect) {
         pa_log_error("Failed to create audio effect. audio_effect_method(%s), "
                         "rate(%d), ch(%d), format(%d), frames(%zu)",
-                        pa_processor_method_str(audio_effect_method),
+                        pa_processor_method_str(method),
                         ss->rate, ss->channels, format, processor->process_frames);
         goto fail;
     }