]> git.sesse.net Git - vlc/blob - modules/misc/dummy/dummy.c
Remove _GNU_SOURCE and string.h too
[vlc] / modules / misc / dummy / dummy.c
1 /*****************************************************************************
2  * dummy.c : dummy plugin for vlc
3  *****************************************************************************
4  * Copyright (C) 2000, 2001 the VideoLAN team
5  * $Id$
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., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 /*****************************************************************************
25  * Preamble
26  *****************************************************************************/
27
28 #include <vlc/vlc.h>
29
30 #include "dummy.h"
31
32 /*****************************************************************************
33  * Module descriptor
34  *****************************************************************************/
35 #define CHROMA_TEXT N_("Dummy image chroma format")
36 #define CHROMA_LONGTEXT N_( \
37     "Force the dummy video output to create images using a specific chroma " \
38     "format instead of trying to improve performances by using the most " \
39     "efficient one.")
40
41 #define SAVE_TEXT N_("Save raw codec data")
42 #define SAVE_LONGTEXT N_( \
43     "Save the raw codec data if you have selected/forced the dummy " \
44     "decoder in the main options." )
45
46 #ifdef WIN32
47 #define QUIET_TEXT N_("Do not open a DOS command box interface")
48 #define QUIET_LONGTEXT N_( \
49     "By default the dummy interface plugin will start a DOS command box. " \
50     "Enabling the quiet mode will not bring this command box but can also " \
51     "be pretty annoying when you want to stop VLC and no video window is " \
52     "open." )
53 #endif
54
55 vlc_module_begin();
56     set_shortname( _("Dummy"));
57     set_description( _("Dummy interface function") );
58     set_capability( "interface", 0 );
59     add_shortcut( "vlc" );
60     set_callbacks( E_(OpenIntf), NULL );
61 #ifdef WIN32
62     set_section( N_( "Dummy Interface" ), NULL );
63     add_category_hint( N_("Interface"), NULL, VLC_FALSE );
64     add_bool( "dummy-quiet", 0, NULL, QUIET_TEXT, QUIET_LONGTEXT, VLC_FALSE );
65 #endif
66     add_submodule();
67         set_description( _("Dummy access function") );
68         set_capability( "access2", 0 );
69         set_callbacks( E_(OpenAccess), NULL );
70     add_submodule();
71         set_description( _("Dummy demux function") );
72         set_capability( "demux2", 0 );
73         set_callbacks( E_(OpenDemux), E_(CloseDemux) );
74     add_submodule();
75         set_section( N_( "Dummy decoder" ), NULL );
76         set_description( _("Dummy decoder function") );
77         set_capability( "decoder", 0 );
78         set_callbacks( E_(OpenDecoder), E_(CloseDecoder) );
79         add_bool( "dummy-save-es", 0, NULL, SAVE_TEXT, SAVE_LONGTEXT, VLC_TRUE );
80     add_submodule();
81         set_description( _("Dummy encoder function") );
82         set_capability( "encoder", 0 );
83         set_callbacks( E_(OpenEncoder), E_(CloseEncoder) );
84     add_submodule();
85         set_description( _("Dummy audio output function") );
86         set_capability( "audio output", 1 );
87         set_callbacks( E_(OpenAudio), NULL );
88     add_submodule();
89         set_description( _("Dummy video output function") );
90         set_section( N_( "Dummy Video output" ), NULL );
91         set_capability( "video output", 1 );
92         set_callbacks( E_(OpenVideo), NULL );
93         add_category_hint( N_("Video"), NULL, VLC_FALSE );
94         add_string( "dummy-chroma", NULL, NULL, CHROMA_TEXT, CHROMA_LONGTEXT, VLC_TRUE );
95     add_submodule();
96         set_description( _("Dummy font renderer function") );
97         set_capability( "text renderer", 1 );
98         set_callbacks( E_(OpenRenderer), NULL );
99 vlc_module_end();
100