]> git.sesse.net Git - vlc/blob - plugins/dvd/dvd.c
* Fixed the BeOS compile typo.
[vlc] / plugins / dvd / dvd.c
1 /*****************************************************************************
2  * dvd.c : DVD input module for vlc
3  *****************************************************************************
4  * Copyright (C) 2000 VideoLAN
5  * $Id: dvd.c,v 1.9 2001/05/30 17:03:12 sam 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 "defs.h"
28
29 #ifdef HAVE_CSS
30 #define MODULE_NAME dvd
31 #else /* HAVE_CSS */
32 #define MODULE_NAME dvdnocss
33 #endif /* HAVE_CSS */
34 #include "modules_inner.h"
35
36 #include <stdlib.h>                                      /* malloc(), free() */
37 #include <string.h>                                              /* strdup() */
38
39 #include "config.h"
40 #include "common.h"                                     /* boolean_t, byte_t */
41 #include "threads.h"
42 #include "mtime.h"
43
44 #include "modules.h"
45
46 /*****************************************************************************
47  * Capabilities defined in the other files.
48  *****************************************************************************/
49 void _M( input_getfunctions )( function_list_t * p_function_list );
50
51 /*****************************************************************************
52  * Build configuration tree.
53  *****************************************************************************/
54 MODULE_CONFIG_START
55 ADD_WINDOW( "Configuration for DVD module" )
56     ADD_COMMENT( "foobar !" )
57 MODULE_CONFIG_STOP
58
59 MODULE_INIT_START
60     p_module->i_capabilities = MODULE_CAPABILITY_NULL
61                                 | MODULE_CAPABILITY_INPUT;
62 #ifdef HAVE_CSS
63     p_module->psz_longname = "full DVD input module with CSS decryption";
64 #else /* HAVE_CSS */
65     p_module->psz_longname = "DVD input module, CSS decryption disabled";
66 #endif /* HAVE_CSS */
67 MODULE_INIT_STOP
68
69 MODULE_ACTIVATE_START
70     _M( input_getfunctions )( &p_module->p_functions->input );
71 MODULE_ACTIVATE_STOP
72
73 MODULE_DEACTIVATE_START
74 MODULE_DEACTIVATE_STOP
75
76 #ifdef HAVE_CSS
77 #else /* HAVE_CSS */
78 #ifdef BUILTIN
79 int module_dvd_InitModule( module_t *p_module )
80 {
81     return module_dvdnocss_InitModule( p_module );
82 }
83
84 int module_dvd_ActivateModule( module_t *p_module )
85 {
86     return module_dvdnocss_ActivateModule( p_module );
87 }
88
89 int module_dvd_DeactivateModule( module_t *p_module )
90 {
91     return module_dvdnocss_DeactivateModule( p_module );
92 }
93 #endif /* BUILTIN */
94 #endif /* HAVE_CSS */
95