]> git.sesse.net Git - vlc/commitdiff
test: Simplify media_player test.
authorPierre d'Herbemont <pdherbemont@free.fr>
Thu, 25 Feb 2010 21:05:05 +0000 (22:05 +0100)
committerPierre d'Herbemont <pdherbemont@free.fr>
Thu, 25 Feb 2010 22:47:03 +0000 (23:47 +0100)
test/libvlc/media_player.c

index cba2a90fb2b915e9f5c0dda37592d769a0fbf014..53ba3d6ba4a28b7a8e017ca2f2494e76457230c0 100644 (file)
 
 #include "test.h"
 
+static void wait_playing(libvlc_media_player_t *mp)
+{
+    libvlc_state_t state;
+    do {
+        state = libvlc_media_player_get_state (mp);
+    } while(state != libvlc_Playing &&
+            state != libvlc_Error &&
+            state != libvlc_Ended );
+
+    state = libvlc_media_player_get_state (mp);
+    assert(state == libvlc_Playing || state == libvlc_Ended);
+}
+
 static void test_media_player_set_media(const char** argv, int argc)
 {
     const char * file = test_default_sample;
@@ -44,15 +57,7 @@ static void test_media_player_set_media(const char** argv, int argc)
 
     libvlc_media_player_play (mp);
 
-    /* Wait a correct state */
-    libvlc_state_t state;
-    do {
-        state = libvlc_media_player_get_state (mp);
-    } while(state != libvlc_Playing &&
-            state != libvlc_Error &&
-            state != libvlc_Ended );
-
-    assert(state == libvlc_Playing || state == libvlc_Ended);
+    wait_playing (mp);
 
     libvlc_media_player_stop (mp);
     libvlc_media_player_release (mp);
@@ -81,15 +86,7 @@ static void test_media_player_play_stop(const char** argv, int argc)
 
     libvlc_media_player_play (mi);
 
-    /* Wait a correct state */
-    libvlc_state_t state;
-    do {
-        state = libvlc_media_player_get_state (mi);
-    } while( state != libvlc_Playing &&
-             state != libvlc_Error &&
-             state != libvlc_Ended );
-
-    assert( state == libvlc_Playing || state == libvlc_Ended );
+    wait_playing (mi);
 
     libvlc_media_player_stop (mi);
     libvlc_media_player_release (mi);
@@ -120,15 +117,7 @@ static void test_media_player_pause_stop(const char** argv, int argc)
 
     log ("Waiting for playing\n");
 
-    /* Wait a correct state */
-    libvlc_state_t state;
-    do {
-        state = libvlc_media_player_get_state (mi);
-    } while( state != libvlc_Playing &&
-             state != libvlc_Error &&
-             state != libvlc_Ended );
-
-    assert( state == libvlc_Playing || state == libvlc_Ended );
+    wait_playing (mi);
 
 #if 0
     /* This can't work because under some condition (short file, this is the case) this will be
@@ -137,14 +126,7 @@ static void test_media_player_pause_stop(const char** argv, int argc)
 
     log ("Waiting for pause\n");
 
-    /* Wait a correct state */
-    do {
-        state = libvlc_media_player_get_state (mi);
-    } while( state != libvlc_Paused &&
-            state != libvlc_Error &&
-            state != libvlc_Ended );
-
-    assert( state == libvlc_Paused || state == libvlc_Ended );
+    wait_paused (mp);
 #endif
 
     libvlc_media_player_stop (mi);