]> git.sesse.net Git - vlc/blobdiff - modules/demux/playlist/ifo.c
macosx: retain objects in MainMenu object
[vlc] / modules / demux / playlist / ifo.c
index 9c8ab79bb919056d6dae4ee38903d7c0411ce284..e031f8b00490796035b2089aaa097e175b05dfda 100644 (file)
@@ -1,31 +1,36 @@
 /*****************************************************************************
  * ifo.c: Dummy ifo demux to enable opening DVDs rips by double cliking on VIDEO_TS.IFO
  *****************************************************************************
- * Copyright (C) 2007 the VideoLAN team
+ * Copyright (C) 2007 VLC authors and VideoLAN
  * $Id$
  *
  * Authors: Antoine Cellerier <dionoea @t videolan d.t org>
  *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
+ * This program is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as published by
+ * the Free Software Foundation; either version 2.1 of the License, or
  * (at your option) any later version.
  *
  * This program is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Lesser General Public License for more details.
  *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with this program; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  *****************************************************************************/
 
 /*****************************************************************************
  * Preamble
  *****************************************************************************/
-#include <vlc/vlc.h>
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+
+#include <vlc_common.h>
 #include <vlc_demux.h>
+#include <assert.h>
 
 #include "playlist.h"
 
  * Local prototypes
  *****************************************************************************/
 static int Demux( demux_t *p_demux);
-static int Control( demux_t *p_demux, int i_query, va_list args );
+static int DemuxDVD_VR( demux_t *p_demux);
 
 /*****************************************************************************
  * Import_IFO: main import function
  *****************************************************************************/
-int E_(Import_IFO)( vlc_object_t *p_this )
+int Import_IFO( vlc_object_t *p_this )
 {
     demux_t *p_demux = (demux_t *)p_this;
 
-    char *psz_file = p_demux->psz_path + strlen( p_demux->psz_path )
-                     - strlen( "VIDEO_TS.IFO" );
-    /* Valid filenamed are :
+    if( !p_demux->psz_file )
+        return VLC_EGENERIC;
+
+    size_t len = strlen( p_demux->psz_file );
+
+    char *psz_file = p_demux->psz_file + len - strlen( "VIDEO_TS.IFO" );
+    /* Valid filenames are :
      *  - VIDEO_TS.IFO
      *  - VTS_XX_X.IFO where X are digits
      */
-    if( strlen( p_demux->psz_path ) > strlen( "VIDEO_TS.IFO" )
+    if( len > strlen( "VIDEO_TS.IFO" )
         && ( !strcasecmp( psz_file, "VIDEO_TS.IFO" )
         || (!strncasecmp( psz_file, "VTS_", 4 )
         && !strcasecmp( psz_file + strlen( "VTS_00_0" ) , ".IFO" ) ) ) )
     {
         int i_peek;
-        const byte_t *p_peek;
+        const uint8_t *p_peek;
+        i_peek = stream_Peek( p_demux->s, &p_peek, 8 );
+
+        if( i_peek != 8 || memcmp( p_peek, "DVDVIDEO", 8 ) )
+            return VLC_EGENERIC;
+
+        p_demux->pf_demux = Demux;
+    }
+    /* Valid filename for DVD-VR is VR_MANGR.IFO */
+    else if( len >= 12 && !strcmp( &p_demux->psz_file[len-12], "VR_MANGR.IFO" ) )
+    {
+        int i_peek;
+        const uint8_t *p_peek;
         i_peek = stream_Peek( p_demux->s, &p_peek, 8 );
 
-        if( strncmp( p_peek, "DVDVIDEO", 8 ) )
+        if( i_peek != 8 || memcmp( p_peek, "DVD_RTR_", 8 ) )
             return VLC_EGENERIC;
+
+        p_demux->pf_demux = DemuxDVD_VR;
     }
     else
         return VLC_EGENERIC;
 
 //    STANDARD_DEMUX_INIT_MSG( "found valid VIDEO_TS.IFO" )
     p_demux->pf_control = Control;
-    p_demux->pf_demux = Demux;
 
     return VLC_SUCCESS;
 }
 
-/*****************************************************************************
- * Deactivate: frees unused data
- *****************************************************************************/
-void E_(Close_IFO)( vlc_object_t *p_this )
-{
-}
-
 static int Demux( demux_t *p_demux )
 {
-    char *psz_url = NULL;
-    size_t len = 0;
-    input_item_t *p_input;
+    char *psz_url, *psz_dir;
 
-    INIT_PLAYLIST_STUFF;
+    psz_dir = strrchr( p_demux->psz_location, '/' );
+    if( psz_dir != NULL )
+       psz_dir[1] = '\0';
 
-    len = strlen( "dvd://" ) + strlen( p_demux->psz_path )
-          - strlen( "VIDEO_TS.IFO" );
-    psz_url = (char *)malloc( len+1 );
-    snprintf( psz_url, len+1, "dvd://%s", p_demux->psz_path );
+    if( asprintf( &psz_url, "dvd://%s", p_demux->psz_location ) == -1 )
+        return 0;
 
-    p_input = input_ItemNewExt( p_playlist, psz_url, psz_url, 0, NULL, -1 );
-    input_ItemAddSubItem( p_current_input, p_input );
+    input_item_t *p_current_input = GetCurrentItem(p_demux);
+    input_item_t *p_input = input_item_New( psz_url, psz_url );
+    input_item_PostSubItem( p_current_input, p_input );
+    vlc_gc_decref( p_input );
 
-    HANDLE_PLAY_AND_RELEASE;
+    vlc_gc_decref(p_current_input);
+    free( psz_url );
 
-    return -1; /* Needed for correct operation of go back */
+    return 0; /* Needed for correct operation of go back */
 }
 
-static int Control( demux_t *p_demux, int i_query, va_list args )
+static int DemuxDVD_VR( demux_t *p_demux )
 {
-    return VLC_EGENERIC;
+    size_t len = strlen( p_demux->psz_location );
+    char *psz_url = malloc( len + 1 );
+
+    if( unlikely( psz_url == NULL ) )
+        return 0;
+    assert( len >= 12 );
+    len -= 12;
+    memcpy( psz_url, p_demux->psz_location, len );
+    memcpy( psz_url + len, "VR_MOVIE.VRO", 13 );
+
+    input_item_t *p_current_input = GetCurrentItem(p_demux);
+    input_item_t *p_input = input_item_New( psz_url, psz_url );
+    input_item_PostSubItem( p_current_input, p_input );
+
+    vlc_gc_decref( p_input );
+
+    vlc_gc_decref(p_current_input);
+    free( psz_url );
+
+    return 0; /* Needed for correct operation of go back */
 }