Fix compilation.
[vlc/asuraparaju-public.git] / test / libvlc / media_player.c
blob258d825f0289c0870f843901ab459ea379586cb1
1 /*
2 * media_player.c - libvlc smoke test
4 * $Id$
5 */
7 /**********************************************************************
8 * Copyright (C) 2007 RĂ©mi Denis-Courmont. *
9 * This program is free software; you can redistribute and/or modify *
10 * it under the terms of the GNU General Public License as published *
11 * by the Free Software Foundation; version 2 of the license, or (at *
12 * your option) any later version. *
13 * *
14 * This program is distributed in the hope that it will be useful, *
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. *
17 * See the GNU General Public License for more details. *
18 * *
19 * You should have received a copy of the GNU General Public License *
20 * along with this program; if not, you can get it from: *
21 * http://www.gnu.org/copyleft/gpl.html *
22 **********************************************************************/
24 #include "test.h"
26 static void wait_playing(libvlc_media_player_t *mp)
28 libvlc_state_t state;
29 do {
30 state = libvlc_media_player_get_state (mp);
31 } while(state != libvlc_Playing &&
32 state != libvlc_Error &&
33 state != libvlc_Ended );
35 state = libvlc_media_player_get_state (mp);
36 assert(state == libvlc_Playing || state == libvlc_Ended);
39 static void wait_paused(libvlc_media_player_t *mp)
41 libvlc_state_t state;
42 do {
43 state = libvlc_media_player_get_state (mp);
44 } while(state != libvlc_Paused &&
45 state != libvlc_Ended );
47 state = libvlc_media_player_get_state (mp);
48 assert(state == libvlc_Paused || state == libvlc_Ended);
51 /* Test a bunch of A/V properties. This most does nothing since the current
52 * test file contains a dummy audio track. This is a smoke test. */
53 static void test_audio_video(libvlc_media_player_t *mp)
55 bool fs = libvlc_get_fullscreen(mp);
56 libvlc_set_fullscreen(mp, true);
57 assert(libvlc_get_fullscreen(mp));
58 libvlc_set_fullscreen(mp, false);
59 assert(!libvlc_get_fullscreen(mp));
60 libvlc_toggle_fullscreen(mp);
61 assert(libvlc_get_fullscreen(mp));
62 libvlc_toggle_fullscreen(mp);
63 assert(!libvlc_get_fullscreen(mp));
64 libvlc_set_fullscreen(mp, fs);
65 assert(libvlc_get_fullscreen(mp) == fs);
67 assert(libvlc_video_get_scale(mp) == 0.); /* default */
68 libvlc_video_set_scale(mp, 0.); /* no-op */
69 libvlc_video_set_scale(mp, 2.5);
70 assert(libvlc_video_get_scale(mp) == 2.5);
71 libvlc_video_set_scale(mp, 0.);
72 libvlc_video_set_scale(mp, 0.); /* no-op */
73 assert(libvlc_video_get_scale(mp) == 0.);
76 static void test_media_player_set_media(const char** argv, int argc)
78 const char * file = test_default_sample;
80 log ("Testing set_media\n");
82 libvlc_instance_t *vlc = libvlc_new (argc, argv);
83 assert (vlc != NULL);
85 libvlc_media_t *md = libvlc_media_new_path (vlc, file);
86 assert (md != NULL);
88 libvlc_media_player_t *mp = libvlc_media_player_new (vlc);
89 assert (mp != NULL);
91 libvlc_media_player_set_media (mp, md);
93 libvlc_media_release (md);
95 libvlc_media_player_play (mp);
97 wait_playing (mp);
99 libvlc_media_player_stop (mp);
100 libvlc_media_player_release (mp);
101 libvlc_release (vlc);
104 static void test_media_player_play_stop(const char** argv, int argc)
106 libvlc_instance_t *vlc;
107 libvlc_media_t *md;
108 libvlc_media_player_t *mi;
109 const char * file = test_default_sample;
111 log ("Testing play and pause of %s\n", file);
113 vlc = libvlc_new (argc, argv);
114 assert (vlc != NULL);
116 md = libvlc_media_new_path (vlc, file);
117 assert (md != NULL);
119 mi = libvlc_media_player_new_from_media (md);
120 assert (mi != NULL);
122 libvlc_media_release (md);
124 libvlc_media_player_play (mi);
126 wait_playing (mi);
128 libvlc_media_player_stop (mi);
129 libvlc_media_player_release (mi);
130 libvlc_release (vlc);
133 static void test_media_player_pause_stop(const char** argv, int argc)
135 libvlc_instance_t *vlc;
136 libvlc_media_t *md;
137 libvlc_media_player_t *mi;
138 const char * file = test_default_sample;
140 log ("Testing pause and stop of %s\n", file);
142 vlc = libvlc_new (argc, argv);
143 assert (vlc != NULL);
145 md = libvlc_media_new_path (vlc, file);
146 assert (md != NULL);
148 mi = libvlc_media_player_new_from_media (md);
149 assert (mi != NULL);
151 libvlc_media_release (md);
153 test_audio_video(mi);
155 libvlc_media_player_play (mi);
156 log ("Waiting for playing\n");
157 wait_playing (mi);
158 test_audio_video(mi);
160 libvlc_media_player_set_pause (mi, true);
161 log ("Waiting for pause\n");
162 wait_paused (mi);
163 test_audio_video(mi);
165 libvlc_media_player_stop (mi);
166 test_audio_video(mi);
168 libvlc_media_player_release (mi);
169 libvlc_release (vlc);
173 int main (void)
175 test_init();
177 test_media_player_set_media (test_defaults_args, test_defaults_nargs);
178 test_media_player_play_stop (test_defaults_args, test_defaults_nargs);
179 test_media_player_pause_stop (test_defaults_args, test_defaults_nargs);
181 return 0;