decoder: cc: detect/auto raise reorder depth
[vlc.git] / test / libvlc / core.c
blobb7fe646cd38e78f30ac4ce7cfb1918a711a5a9a0
1 /*
2 * core.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 #include <string.h>
28 static void test_core (const char ** argv, int argc)
30 libvlc_instance_t *vlc;
32 log ("Testing core\n");
34 vlc = libvlc_new (argc, argv);
35 assert (vlc != NULL);
37 libvlc_retain (vlc);
38 libvlc_release (vlc);
39 libvlc_release (vlc);
42 static void test_moduledescriptionlist (libvlc_module_description_t *list)
44 libvlc_module_description_t *module = list;
45 while ( module ) {
46 assert (strlen (module->psz_name) );
47 assert (strlen (module->psz_shortname) );
48 assert (module->psz_longname == NULL || strlen (module->psz_longname));
49 assert (module->psz_help == NULL || strlen (module->psz_help));
50 module = module->p_next;
53 libvlc_module_description_list_release (list);
56 static void test_audiovideofilterlists (const char ** argv, int argc)
58 libvlc_instance_t *vlc;
60 log ("Testing libvlc_(audio|video)_filter_list_get()\n");
62 vlc = libvlc_new (argc, argv);
63 assert (vlc != NULL);
65 test_moduledescriptionlist (libvlc_audio_filter_list_get (vlc));
66 test_moduledescriptionlist (libvlc_video_filter_list_get (vlc));
68 libvlc_release (vlc);
71 static void test_audio_output (void)
73 libvlc_instance_t *vlc = libvlc_new (0, NULL);
74 assert (vlc != NULL);
76 libvlc_audio_output_t *mods = libvlc_audio_output_list_get (vlc);
77 assert (mods != NULL);
79 puts ("Audio outputs:");
80 for (const libvlc_audio_output_t *o = mods; o != NULL; o = o->p_next)
82 libvlc_audio_output_device_t *devs;
84 printf(" %s: %s\n", o->psz_name, o->psz_description);
86 devs = libvlc_audio_output_device_list_get (vlc, o->psz_name);
87 if (devs == NULL)
88 continue;
89 for (const libvlc_audio_output_device_t *d = devs;
90 d != NULL;
91 d = d->p_next)
92 printf(" %s: %s\n", d->psz_device, d->psz_description);
94 libvlc_audio_output_device_list_release (devs);
96 libvlc_audio_output_list_release (mods);
97 libvlc_release (vlc);
100 int main (void)
102 test_init();
104 test_core (test_defaults_args, test_defaults_nargs);
105 test_audiovideofilterlists (test_defaults_args, test_defaults_nargs);
106 test_audio_output ();
108 return 0;