]> git.sesse.net Git - vlc/blob - modules/demux/demux2.c
* directory: converted to access2.
[vlc] / modules / demux / demux2.c
1 /*****************************************************************************
2  * demux2 adaptation layer.
3  *****************************************************************************
4  * Copyright (C) 2004 VideoLAN
5  * $Id$
6  *
7  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
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
29 #include <vlc/vlc.h>
30 #include <vlc/input.h>
31
32 #include "vlc_playlist.h"
33
34 /*****************************************************************************
35  * Module descriptor
36  *****************************************************************************/
37 static int  Demux2Open    ( vlc_object_t * );
38 static void Demux2Close  ( vlc_object_t * );
39
40 vlc_module_begin();
41     set_description( _("Demux2 adaptation layer" ) );
42     set_capability( "demux", 2 );
43     set_callbacks( Demux2Open, Demux2Close );
44     add_shortcut( "demux2" );
45
46     /* Hack */
47     add_shortcut( "nsv" );
48     add_shortcut( "live" );
49     add_shortcut( "ts2" );
50     add_shortcut( "ps2" );
51     add_shortcut( "dvdnav" );
52     add_shortcut( "dvdnavsimple" );
53     add_shortcut( "ffmpeg" );
54     add_shortcut( "mp3" );
55     add_shortcut( "mpga" );
56     add_shortcut( "aac" );
57     add_shortcut( "a52" );
58     add_shortcut( "dts" );
59     add_shortcut( "mod" );
60     add_shortcut( "flac" );
61     add_shortcut( "m3u" );
62     add_shortcut( "playlist" );
63     add_shortcut( "m4v" );
64     add_shortcut( "mp4v" );
65     add_shortcut( "mpgv" );
66     add_shortcut( "rawdv" );
67     add_shortcut( "ogg" );
68     add_shortcut( "h264" );
69     add_shortcut( "avi" );
70     add_shortcut( "mjpeg" );
71     add_shortcut( "directory" );
72 vlc_module_end();
73
74 /*****************************************************************************
75  * Local prototypes
76  *****************************************************************************/
77 static int  Demux2Demux  ( input_thread_t * );
78 static int  Demux2Control( input_thread_t *, int, va_list );
79
80 typedef struct
81 {
82     demux_t  *p_demux;
83 } demux2_sys_t;
84
85 /*****************************************************************************
86  * Demux2Open: initializes structures
87  *****************************************************************************/
88 static int Demux2Open( vlc_object_t * p_this )
89 {
90     input_thread_t *p_input = (input_thread_t *)p_this;
91     demux2_sys_t   *p_sys   = malloc( sizeof( demux2_sys_t ) );
92     demux_t        *p_demux;
93     playlist_t     *p_playlist;
94
95     char           *psz_uri;
96
97     if( input_InitStream( p_input, 0 ) )
98     {
99         return VLC_EGENERIC;
100     }
101
102     psz_uri = malloc( strlen( p_input->psz_access ) + strlen( p_input->psz_demux ) + strlen( p_input->psz_name  ) + 1 + 3 + 1 );
103     if( p_input->psz_demux && *p_input->psz_demux )
104     {
105         sprintf( psz_uri, "%s/%s://%s", p_input->psz_access, p_input->psz_demux, p_input->psz_name );
106     }
107     else if( p_input->psz_access && *p_input->psz_access )
108     {
109         sprintf( psz_uri, "%s://%s", p_input->psz_access, p_input->psz_name );
110     }
111     else
112     {
113         sprintf( psz_uri, "://%s", p_input->psz_name );
114     }
115
116     p_demux = demux2_New( p_input, psz_uri, p_input->s, p_input->p_es_out );
117
118     free( psz_uri );
119
120     if( !p_demux )
121     {
122         /* We should handle special access+demuxer but later */
123         free( p_sys );
124         return VLC_EGENERIC;
125     }
126
127     /* Now retreive meta info from demuxer */
128     if( ( p_playlist = vlc_object_find( p_demux, VLC_OBJECT_PLAYLIST,
129                                         FIND_ANYWHERE ) ) )
130     {
131         int64_t i_length;
132
133         if( !demux2_Control( p_demux, DEMUX_GET_LENGTH, &i_length ) )
134         {
135             playlist_SetDuration( p_playlist, -1, i_length );
136         }
137         vlc_object_release( p_playlist );
138     }
139
140     p_input->pf_demux = Demux2Demux;
141     p_input->pf_demux_control = Demux2Control;
142     p_input->p_demux_data = (demux_sys_t*)p_sys;
143
144     p_sys->p_demux = p_demux;
145
146     return VLC_SUCCESS;
147 }
148
149
150 /*****************************************************************************
151  * Demux2Demux: reads and demuxes data packets
152  *****************************************************************************
153  * Returns -1 in case of error, 0 in case of EOF, 1 otherwise
154  *****************************************************************************/
155 static int Demux2Demux( input_thread_t * p_input )
156 {
157     demux2_sys_t  *p_sys = (demux2_sys_t*)p_input->p_demux_data;
158
159     return demux2_Demux( p_sys->p_demux );
160 }
161
162 /*****************************************************************************
163  * Demux2Control:
164  *****************************************************************************/
165 static int  Demux2Control( input_thread_t *p_input, int i_query, va_list args )
166 {
167     demux2_sys_t  *p_sys = (demux2_sys_t*)p_input->p_demux_data;
168
169     return demux2_vaControl( p_sys->p_demux, i_query, args );
170 }
171
172 /*****************************************************************************
173  * Demux2Close: frees unused data
174  *****************************************************************************/
175 static void Demux2Close( vlc_object_t * p_this )
176 {
177     input_thread_t *p_input = (input_thread_t*)p_this;
178     demux2_sys_t   *p_sys = (demux2_sys_t*)p_input->p_demux_data;
179
180     demux2_Delete( p_sys->p_demux );
181
182     free( p_sys );
183 }