2 * media_player.c - libvlc smoke test
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. *
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. *
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 **********************************************************************/
26 static void wait_playing(libvlc_media_player_t
*mp
)
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
)
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
);
85 libvlc_media_t
*md
= libvlc_media_new_path (vlc
, file
);
88 libvlc_media_player_t
*mp
= libvlc_media_player_new (vlc
);
91 libvlc_media_player_set_media (mp
, md
);
93 libvlc_media_release (md
);
95 libvlc_media_player_play (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
;
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
);
119 mi
= libvlc_media_player_new_from_media (md
);
122 libvlc_media_release (md
);
124 libvlc_media_player_play (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
;
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
);
148 mi
= libvlc_media_player_new_from_media (md
);
151 libvlc_media_release (md
);
153 test_audio_video(mi
);
155 libvlc_media_player_play (mi
);
156 log ("Waiting for playing\n");
158 test_audio_video(mi
);
160 libvlc_media_player_set_pause (mi
, true);
161 log ("Waiting for pause\n");
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
);
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
);