]> git.sesse.net Git - vlc/blob - modules/misc/dummy/dummy.c
modules: use the new add_shortcut capability (add multiple shortcuts at a time).
[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 #ifdef HAVE_CONFIG_H
29 # include "config.h"
30 #endif
31
32 #include <vlc_common.h>
33 #include <vlc_plugin.h>
34
35 #include "dummy.h"
36
37 static int OpenDummy(vlc_object_t *);
38
39 /*****************************************************************************
40  * Module descriptor
41  *****************************************************************************/
42 #define CHROMA_TEXT N_("Dummy image chroma format")
43 #define CHROMA_LONGTEXT N_( \
44     "Force the dummy video output to create images using a specific chroma " \
45     "format instead of trying to improve performances by using the most " \
46     "efficient one.")
47
48 #define SAVE_TEXT N_("Save raw codec data")
49 #define SAVE_LONGTEXT N_( \
50     "Save the raw codec data if you have selected/forced the dummy " \
51     "decoder in the main options." )
52
53 #ifdef WIN32
54 #define QUIET_TEXT N_("Do not open a DOS command box interface")
55 #define QUIET_LONGTEXT N_( \
56     "By default the dummy interface plugin will start a DOS command box. " \
57     "Enabling the quiet mode will not bring this command box but can also " \
58     "be pretty annoying when you want to stop VLC and no video window is " \
59     "open." )
60 #endif
61
62 vlc_module_begin ()
63     set_shortname( N_("Dummy"))
64     set_description( N_("Dummy interface function") )
65     set_capability( "interface", 0 )
66     set_callbacks( OpenIntf, NULL )
67 #ifdef WIN32
68     set_section( N_( "Dummy Interface" ), NULL )
69     add_category_hint( N_("Interface"), NULL, false )
70     add_bool( "dummy-quiet", false, NULL, QUIET_TEXT, QUIET_LONGTEXT, false )
71 #endif
72     add_submodule ()
73         set_description( N_("Dummy demux function") )
74         set_capability( "access_demux", 0 )
75         set_callbacks( OpenDemux, CloseDemux )
76         add_shortcut( "vlc" )
77     add_submodule ()
78         set_section( N_( "Dummy decoder" ), NULL )
79         set_description( N_("Dummy decoder function") )
80         set_capability( "decoder", 0 )
81         set_callbacks( OpenDecoder, CloseDecoder )
82         set_category( CAT_INPUT )
83         set_subcategory( SUBCAT_INPUT_SCODEC )
84         add_bool( "dummy-save-es", false, NULL, SAVE_TEXT, SAVE_LONGTEXT, true )
85     add_submodule ()
86         set_section( N_( "Dump decoder" ), NULL )
87         set_description( N_("Dump decoder function") )
88         set_capability( "decoder", -1 )
89         set_callbacks( OpenDecoderDump, CloseDecoder )
90         add_shortcut( "dump" )
91     add_submodule ()
92         set_description( N_("Dummy encoder function") )
93         set_capability( "encoder", 0 )
94         set_callbacks( OpenEncoder, CloseEncoder )
95     add_submodule ()
96         set_description( N_("Dummy audio output function") )
97         set_capability( "audio output", 1 )
98         set_callbacks( OpenAudio, NULL )
99     add_submodule ()
100         set_description( N_("Dummy video output function") )
101         set_section( N_( "Dummy Video output" ), NULL )
102         set_capability( "vout display", 1 )
103         set_callbacks( OpenVideo, CloseVideo )
104         set_category( CAT_VIDEO )
105         set_subcategory( SUBCAT_VIDEO_VOUT )
106         add_category_hint( N_("Video"), NULL, false )
107         add_string( "dummy-chroma", NULL, NULL, CHROMA_TEXT, CHROMA_LONGTEXT, true )
108     add_submodule ()
109         set_section( N_( "Stats video output" ), NULL )
110         set_description( N_("Stats video output function") )
111         set_capability( "vout display", 0 )
112         add_shortcut( "stats" )
113         set_callbacks( OpenVideoStat, CloseVideo )
114     add_submodule ()
115         set_description( N_("Dummy font renderer function") )
116         set_capability( "text renderer", 1 )
117         set_callbacks( OpenRenderer, NULL )
118     add_submodule ()
119         set_description( N_("libc memcpy") )
120         set_capability( "memcpy", 50 )
121         set_callbacks( OpenDummy, NULL )
122         add_shortcut( "c", "libc" )
123 vlc_module_end ()
124
125 static int OpenDummy( vlc_object_t *obj )
126 {
127     (void) obj;
128     return VLC_SUCCESS;
129 }