]> git.sesse.net Git - vlc/blob - plugins/dvd/dvd.c
* Added debian/* files to help generating CSS-enabled non-US packages,
[vlc] / plugins / dvd / dvd.c
1 /*****************************************************************************
2  * dvd.c : DVD input module for vlc
3  *****************************************************************************
4  * Copyright (C) 2000 VideoLAN
5  *
6  * Authors: Samuel Hocevar <sam@zoy.org>
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  * 
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
21  *****************************************************************************/
22
23 /*****************************************************************************
24  * Preamble
25  *****************************************************************************/
26 #include "defs.h"
27
28 #ifdef HAVE_CSS
29 #define MODULE_NAME dvd-css
30 #else /* HAVE_CSS */
31 #define MODULE_NAME dvd
32 #endif /* HAVE_CSS */
33 #include "modules_inner.h"
34
35 #include <stdlib.h>                                      /* malloc(), free() */
36 #include <string.h>                                              /* strdup() */
37
38 #include "config.h"
39 #include "common.h"                                     /* boolean_t, byte_t */
40 #include "threads.h"
41 #include "mtime.h"
42
43 #include "modules.h"
44
45 /*****************************************************************************
46  * Build configuration tree.
47  *****************************************************************************/
48 MODULE_CONFIG_START
49 ADD_WINDOW( "Configuration for DVD module" )
50     ADD_COMMENT( "foobar !" )
51 MODULE_CONFIG_END
52
53 /*****************************************************************************
54  * Capabilities defined in the other files.
55  *****************************************************************************/
56 void _M( input_getfunctions )( function_list_t * p_function_list );
57
58 /*****************************************************************************
59  * InitModule: get the module structure and configuration.
60  *****************************************************************************
61  * We have to fill psz_name, psz_longname and psz_version. These variables
62  * will be strdup()ed later by the main application because the module can
63  * be unloaded later to save memory, and we want to be able to access this
64  * data even after the module has been unloaded.
65  *****************************************************************************/
66 MODULE_INIT
67 {
68     p_module->psz_name = MODULE_STRING;
69 #ifdef HAVE_CSS
70     p_module->psz_longname = "full DVD input module with CSS decryption";
71 #else /* HAVE_CSS */
72     p_module->psz_longname = "DVD input module, CSS decryption disabled";
73 #endif /* HAVE_CSS */
74     p_module->psz_version = VERSION;
75
76     p_module->i_capabilities = MODULE_CAPABILITY_NULL
77                                 | MODULE_CAPABILITY_INPUT;
78
79     return( 0 );
80 }
81
82 /*****************************************************************************
83  * ActivateModule: set the module to an usable state.
84  *****************************************************************************
85  * This function fills the capability functions and the configuration
86  * structure. Once ActivateModule() has been called, the i_usage can
87  * be set to 0 and calls to NeedModule() be made to increment it. To unload
88  * the module, one has to wait until i_usage == 0 and call DeactivateModule().
89  *****************************************************************************/
90 MODULE_ACTIVATE
91 {
92     p_module->p_functions = malloc( sizeof( module_functions_t ) );
93     if( p_module->p_functions == NULL )
94     {
95         return( -1 );
96     }
97
98     _M( input_getfunctions )( &p_module->p_functions->input );
99
100     p_module->p_config = p_config;
101
102     return( 0 );
103 }
104
105 /*****************************************************************************
106  * DeactivateModule: make sure the module can be unloaded.
107  *****************************************************************************
108  * This function must only be called when i_usage == 0. If it successfully
109  * returns, i_usage can be set to -1 and the module unloaded. Be careful to
110  * lock usage_lock during the whole process.
111  *****************************************************************************/
112 MODULE_DEACTIVATE
113 {
114     free( p_module->p_functions );
115
116     return( 0 );
117 }
118