]> git.sesse.net Git - vlc/blob - modules/misc/dummy/dummy.c
* modules/*: got rid of empty module objects.
[vlc] / modules / misc / dummy / dummy.c
1 /*****************************************************************************
2  * dummy.c : dummy plugin for vlc
3  *****************************************************************************
4  * Copyright (C) 2000, 2001 VideoLAN
5  * $Id: dummy.c,v 1.8 2003/06/17 16:09:16 gbazin Exp $
6  *
7  * Authors: Samuel Hocevar <sam@zoy.org>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at 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.  See the
17  * 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, write to the Free Software
21  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
22  *****************************************************************************/
23
24 /*****************************************************************************
25  * Preamble
26  *****************************************************************************/
27 #include <stdlib.h>                                      /* malloc(), free() */
28 #include <string.h>
29
30 #include <vlc/vlc.h>
31
32 #include "dummy.h"
33
34 /*****************************************************************************
35  * Module descriptor
36  *****************************************************************************/
37 #define CHROMA_TEXT N_("Dummy image chroma format")
38 #define CHROMA_LONGTEXT N_( \
39     "Force the dummy video output to create images using a specific chroma " \
40     "format instead of trying to improve performances by using the most " \
41     "efficient one.")
42
43 #ifdef WIN32
44 #define QUIET_TEXT N_("Don't open a dos command box interface")
45 #define QUIET_LONGTEXT N_( \
46     "By default the dummy interface plugin will start a dos command box. " \
47     "Enabling the quiet mode will not bring this command box but can also " \
48     "be pretty annoying when you want to stop vlc and no video window is " \
49     "opened." )
50 #endif
51
52 vlc_module_begin();
53     set_description( _("dummy interface function") );
54     set_capability( "interface", 0 );
55     add_shortcut( "vlc" );
56     set_callbacks( E_(OpenIntf), NULL );
57 #ifdef WIN32
58     add_category_hint( N_("Interface"), NULL, VLC_FALSE );
59     add_bool( "dummy-quiet", 0, NULL, QUIET_TEXT, QUIET_LONGTEXT, VLC_FALSE );
60 #endif
61     add_submodule();
62         set_description( _("dummy access function") );
63         set_capability( "access", 0 );
64         set_callbacks( E_(OpenAccess), NULL );
65     add_submodule();
66         set_description( _("dummy demux function") );
67         set_capability( "demux", 0 );
68         set_callbacks( E_(OpenDemux), E_(CloseDemux) );
69     add_submodule();
70         set_description( _("dummy decoder function") );
71         set_capability( "decoder", 0 );
72         set_callbacks( E_(OpenDecoder), NULL );
73     add_submodule();
74         set_description( _("dummy audio output function") );
75         set_capability( "audio output", 1 );
76         set_callbacks( E_(OpenAudio), NULL );
77     add_submodule();
78         set_description( _("dummy video output function") );
79         set_capability( "video output", 1 );
80         set_callbacks( E_(OpenVideo), NULL );
81         add_category_hint( N_("Video"), NULL, VLC_FALSE );
82         add_string( "dummy-chroma", NULL, NULL, CHROMA_TEXT, CHROMA_LONGTEXT, VLC_FALSE );
83 vlc_module_end();
84