tests: ecore_audio: move _finished_cb behind PULSE guard

This callback is only used from the pulse object test.
This commit is contained in:
Stefan Schmidt 2016-07-05 10:42:05 +02:00
parent 2ca5075193
commit 2a9c000859
1 changed files with 11 additions and 11 deletions

View File

@ -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)
{