]> git.sesse.net Git - vlc/blob - modules/demux/playlist/ifo.c
Don't include config.h from the headers - refs #297.
[vlc] / modules / demux / playlist / ifo.c
1 /*****************************************************************************
2  * ifo.c: Dummy ifo demux to enable opening DVDs rips by double cliking on VIDEO_TS.IFO
3  *****************************************************************************
4  * Copyright (C) 2007 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Antoine Cellerier <dionoea @t videolan d.t 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 #ifdef HAVE_CONFIG_H
28 # include "config.h"
29 #endif
30
31 #include <vlc/vlc.h>
32 #include <vlc_demux.h>
33
34 #include "playlist.h"
35
36 /*****************************************************************************
37  * Local prototypes
38  *****************************************************************************/
39 static int Demux( demux_t *p_demux);
40 static int Control( demux_t *p_demux, int i_query, va_list args );
41
42 /*****************************************************************************
43  * Import_IFO: main import function
44  *****************************************************************************/
45 int E_(Import_IFO)( vlc_object_t *p_this )
46 {
47     demux_t *p_demux = (demux_t *)p_this;
48
49     char *psz_file = p_demux->psz_path + strlen( p_demux->psz_path )
50                      - strlen( "VIDEO_TS.IFO" );
51     /* Valid filenamed are :
52      *  - VIDEO_TS.IFO
53      *  - VTS_XX_X.IFO where X are digits
54      */
55     if( strlen( p_demux->psz_path ) > strlen( "VIDEO_TS.IFO" )
56         && ( !strcasecmp( psz_file, "VIDEO_TS.IFO" )
57         || (!strncasecmp( psz_file, "VTS_", 4 )
58         && !strcasecmp( psz_file + strlen( "VTS_00_0" ) , ".IFO" ) ) ) )
59     {
60         int i_peek;
61         const byte_t *p_peek;
62         i_peek = stream_Peek( p_demux->s, &p_peek, 8 );
63
64         if( i_peek != 8 || memcmp( p_peek, "DVDVIDEO", 8 ) )
65             return VLC_EGENERIC;
66     }
67     else
68         return VLC_EGENERIC;
69
70 //    STANDARD_DEMUX_INIT_MSG( "found valid VIDEO_TS.IFO" )
71     p_demux->pf_control = Control;
72     p_demux->pf_demux = Demux;
73
74     return VLC_SUCCESS;
75 }
76
77 /*****************************************************************************
78  * Deactivate: frees unused data
79  *****************************************************************************/
80 void E_(Close_IFO)( vlc_object_t *p_this )
81 {
82 }
83
84 static int Demux( demux_t *p_demux )
85 {
86     char *psz_url = NULL;
87     size_t len = 0;
88     input_item_t *p_input;
89
90     INIT_PLAYLIST_STUFF;
91
92     len = strlen( "dvd://" ) + strlen( p_demux->psz_path )
93           - strlen( "VIDEO_TS.IFO" );
94     psz_url = (char *)malloc( len+1 );
95     snprintf( psz_url, len+1, "dvd://%s", p_demux->psz_path );
96
97     p_input = input_ItemNewExt( p_playlist, psz_url, psz_url, 0, NULL, -1 );
98     input_ItemAddSubItem( p_current_input, p_input );
99     vlc_gc_decref( p_input );
100
101     HANDLE_PLAY_AND_RELEASE;
102
103     return 0; /* Needed for correct operation of go back */
104 }
105
106 static int Control( demux_t *p_demux, int i_query, va_list args )
107 {
108     return VLC_EGENERIC;
109 }