]> git.sesse.net Git - vlc/blob - modules/demux/demux2.c
f174eadf50d74751092b1e00bf7143b25983665b
[vlc] / modules / demux / demux2.c
1 /*****************************************************************************
2  * demux2 adaptation layer.
3  *****************************************************************************
4  * Copyright (C) 2004 VideoLAN
5  * $Id: demux2.c,v 1.6 2004/01/20 14:51:30 fenrir Exp $
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( "real" );
49     add_shortcut( "rm" );
50     add_shortcut( "ts2" );
51     add_shortcut( "ps2" );
52     add_shortcut( "dvdnav" );
53     add_shortcut( "ffmpeg" );
54 vlc_module_end();
55
56 /*****************************************************************************
57  * Local prototypes
58  *****************************************************************************/
59 static int  Demux2Demux  ( input_thread_t * );
60 static int  Demux2Control( input_thread_t *, int, va_list );
61
62 typedef struct
63 {
64     demux_t  *p_demux;
65 } demux2_sys_t;
66
67 /*****************************************************************************
68  * Demux2Open: initializes structures
69  *****************************************************************************/
70 static int Demux2Open( vlc_object_t * p_this )
71 {
72     input_thread_t *p_input = (input_thread_t *)p_this;
73     demux2_sys_t   *p_sys   = malloc( sizeof( demux2_sys_t ) );
74     demux_t        *p_demux;
75     playlist_t     *p_playlist;
76
77     char           *psz_uri;
78
79     if( input_InitStream( p_input, 0 ) )
80     {
81         return VLC_EGENERIC;
82     }
83
84     psz_uri = malloc( strlen( p_input->psz_access ) + strlen( p_input->psz_demux ) + strlen( p_input->psz_name  ) + 1 + 3 + 1 );
85     if( p_input->psz_demux && *p_input->psz_demux )
86     {
87         sprintf( psz_uri, "%s/%s://%s", p_input->psz_access, p_input->psz_demux, p_input->psz_name );
88     }
89     else if( p_input->psz_access && *p_input->psz_access )
90     {
91         sprintf( psz_uri, "%s://%s", p_input->psz_access, p_input->psz_name );
92     }
93     else
94     {
95         sprintf( psz_uri, "%s", p_input->psz_name );
96     }
97
98     p_demux = demux2_New( p_input, psz_uri, p_input->s, p_input->p_es_out );
99
100     free( psz_uri );
101
102     if( !p_demux )
103     {
104         /* We should handle special access+demuxer but later */
105         free( p_sys );
106         return VLC_EGENERIC;
107     }
108
109     /* Now retreive meta info from demuxer */
110     if( ( p_playlist = vlc_object_find( p_demux, VLC_OBJECT_PLAYLIST,
111                                         FIND_ANYWHERE ) ) )
112     {
113         int64_t i_length;
114
115         if( !demux2_Control( p_demux, DEMUX_GET_LENGTH, &i_length ) )
116         {
117             playlist_SetDuration( p_playlist, -1, i_length );
118         }
119         vlc_object_release( p_playlist );
120     }
121
122     p_input->pf_demux = Demux2Demux;
123     p_input->pf_demux_control = Demux2Control;
124     p_input->p_demux_data = (demux_sys_t*)p_sys;
125
126     p_sys->p_demux = p_demux;
127
128     return VLC_SUCCESS;
129 }
130
131
132 /*****************************************************************************
133  * Demux2Demux: reads and demuxes data packets
134  *****************************************************************************
135  * Returns -1 in case of error, 0 in case of EOF, 1 otherwise
136  *****************************************************************************/
137 static int Demux2Demux( input_thread_t * p_input )
138 {
139     demux2_sys_t  *p_sys = (demux2_sys_t*)p_input->p_demux_data;
140
141     return demux2_Demux( p_sys->p_demux );
142 }
143
144 /*****************************************************************************
145  * Demux2Control:
146  *****************************************************************************/
147 static int  Demux2Control( input_thread_t *p_input, int i_query, va_list args )
148 {
149     demux2_sys_t  *p_sys = (demux2_sys_t*)p_input->p_demux_data;
150
151     return demux2_vaControl( p_sys->p_demux, i_query, args );
152 }
153
154 /*****************************************************************************
155  * Demux2Close: frees unused data
156  *****************************************************************************/
157 static void Demux2Close( vlc_object_t * p_this )
158 {
159     input_thread_t *p_input = (input_thread_t*)p_this;
160     demux2_sys_t   *p_sys = (demux2_sys_t*)p_input->p_demux_data;
161
162     demux2_Delete( p_sys->p_demux );
163
164     free( p_sys );
165 }