From 2a9c000859129a0ebb9b2005869e2dc35a5ec2f9 Mon Sep 17 00:00:00 2001 From: Stefan Schmidt Date: Tue, 5 Jul 2016 10:42:05 +0200 Subject: [PATCH] tests: ecore_audio: move _finished_cb behind PULSE guard This callback is only used from the pulse object test. --- src/tests/ecore/ecore_test_ecore_audio.c | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/src/tests/ecore/ecore_test_ecore_audio.c b/src/tests/ecore/ecore_test_ecore_audio.c index dda71e3be6..d0e8fc52b9 100644 --- a/src/tests/ecore/ecore_test_ecore_audio.c +++ b/src/tests/ecore/ecore_test_ecore_audio.c @@ -11,6 +11,17 @@ #include "ecore_suite.h" +static void _finished_cb(void *data EINA_UNUSED, const Eo_Event *event EINA_UNUSED) +{ + ecore_main_loop_quit(); +} + +static void _looped_cb(void *data EINA_UNUSED, const Eo_Event *event) +{ + ecore_audio_obj_in_looped_set(event->object, EINA_FALSE); +} + +#ifdef HAVE_PULSE static void _failed_cb(void *data, const Eo_Event *event EINA_UNUSED) { Eina_Bool *pulse_context_failed = data; @@ -23,17 +34,6 @@ static void _failed_cb(void *data, const Eo_Event *event EINA_UNUSED) ecore_main_loop_quit(); } -static void _finished_cb(void *data EINA_UNUSED, const Eo_Event *event EINA_UNUSED) -{ - ecore_main_loop_quit(); -} - -static void _looped_cb(void *data EINA_UNUSED, const Eo_Event *event) -{ - ecore_audio_obj_in_looped_set(event->object, EINA_FALSE); -} - -#ifdef HAVE_PULSE static Eina_Bool _seek_vol(void *data) {