Commit 8ad05151 authored by Pierre d'Herbemont's avatar Pierre d'Herbemont

mp4: Don't use playlist code.

parent bcab891b
...@@ -33,11 +33,11 @@ ...@@ -33,11 +33,11 @@
#include <vlc_demux.h> #include <vlc_demux.h>
#include <vlc_playlist.h>
#include <vlc_md5.h> #include <vlc_md5.h>
#include <vlc_charset.h> #include <vlc_charset.h>
#include <vlc_iso_lang.h> #include <vlc_iso_lang.h>
#include <vlc_meta.h> #include <vlc_meta.h>
#include <vlc_input.h>
#include "libmp4.h" #include "libmp4.h"
#include "drms.h" #include "drms.h"
...@@ -64,7 +64,7 @@ vlc_module_end(); ...@@ -64,7 +64,7 @@ vlc_module_end();
* Local prototypes * Local prototypes
*****************************************************************************/ *****************************************************************************/
static int Demux ( demux_t * ); static int Demux ( demux_t * );
static int DemuxRef( demux_t *p_demux ){ return 0;} static int DemuxRef( demux_t *p_demux ){ (void)p_demux; return 0;}
static int Seek ( demux_t *, mtime_t ); static int Seek ( demux_t *, mtime_t );
static int Control ( demux_t *, int, va_list ); static int Control ( demux_t *, int, va_list );
...@@ -257,10 +257,6 @@ static inline int64_t MP4_GetMoviePTS(demux_sys_t *p_sys ) ...@@ -257,10 +257,6 @@ static inline int64_t MP4_GetMoviePTS(demux_sys_t *p_sys )
return INT64_C(1000000) * p_sys->i_time / p_sys->i_timescale; return INT64_C(1000000) * p_sys->i_time / p_sys->i_timescale;
} }
/* Function to lookup the currently playing item */
static bool FindItem( demux_t *p_demux, playlist_t *p_playlist,
playlist_item_t **pp_item );
static void LoadChapter( demux_t *p_demux ); static void LoadChapter( demux_t *p_demux );
/***************************************************************************** /*****************************************************************************
...@@ -363,20 +359,15 @@ static int Open( vlc_object_t * p_this ) ...@@ -363,20 +359,15 @@ static int Open( vlc_object_t * p_this )
if( ( p_rmra = MP4_BoxGet( p_sys->p_root, "/moov/rmra" ) ) ) if( ( p_rmra = MP4_BoxGet( p_sys->p_root, "/moov/rmra" ) ) )
{ {
playlist_t *p_playlist;
playlist_item_t *p_current, *p_item_in_category;
int i_count = MP4_BoxCount( p_rmra, "rmda" ); int i_count = MP4_BoxCount( p_rmra, "rmda" );
int i; int i;
bool b_play = false; bool b_play = false;
msg_Dbg( p_demux, "detected playlist mov file (%d ref)", i_count ); msg_Dbg( p_demux, "detected playlist mov file (%d ref)", i_count );
p_playlist = pl_Yield( p_demux ); input_thread_t * p_input = vlc_object_find( p_demux, VLC_OBJECT_INPUT, FIND_PARENT );
if( p_playlist ) input_item_t * p_current = input_GetItem( p_input );
{ p_current->i_type = ITEM_TYPE_PLAYLIST;
b_play = FindItem( p_demux, p_playlist, &p_current );
p_item_in_category = playlist_ItemToNode( p_playlist, p_current, true );
p_current->p_input->i_type = ITEM_TYPE_PLAYLIST;
for( i = 0; i < i_count; i++ ) for( i = 0; i < i_count; i++ )
{ {
...@@ -420,21 +411,14 @@ static int Open( vlc_object_t * p_this ) ...@@ -420,21 +411,14 @@ static int Open( vlc_object_t * p_this )
psz_ref = psz_absolute; psz_ref = psz_absolute;
free( psz_path ); free( psz_path );
} }
if( p_current )
{
input_item_t *p_input; input_item_t *p_input;
msg_Dbg( p_demux, "adding ref = `%s'", psz_ref ); msg_Dbg( p_demux, "adding ref = `%s'", psz_ref );
p_input = input_ItemNewExt( p_playlist, psz_ref, NULL, p_input = input_ItemNewExt( p_demux, psz_ref, NULL,
0, NULL, -1 ); 0, NULL, -1 );
input_ItemCopyOptions( p_current->p_input, p_input ); input_ItemCopyOptions( p_current, p_input );
/* FIXME: playlist_BothAddInput() can fail */ input_ItemAddSubItem( p_current, p_input );
playlist_BothAddInput( p_playlist, p_input,
p_item_in_category,
PLAYLIST_APPEND, PLAYLIST_END,
NULL, NULL, false );
vlc_gc_decref( p_input ); vlc_gc_decref( p_input );
} }
}
else else
{ {
msg_Err( p_demux, "unknown ref type=%4.4s FIXME (send a bug report)", msg_Err( p_demux, "unknown ref type=%4.4s FIXME (send a bug report)",
...@@ -442,18 +426,7 @@ static int Open( vlc_object_t * p_this ) ...@@ -442,18 +426,7 @@ static int Open( vlc_object_t * p_this )
} }
free( psz_ref ); free( psz_ref );
} }
if( b_play && p_item_in_category && vlc_object_release( p_input );
p_item_in_category->i_children > 0 )
{
playlist_Control( p_playlist, PLAYLIST_VIEWPLAY, true,
p_item_in_category, NULL );
}
vlc_object_release( p_playlist );
}
else
{
msg_Err( p_demux, "can't find playlist" );
}
} }
if( !(p_mvhd = MP4_BoxGet( p_sys->p_root, "/moov/mvhd" ) ) ) if( !(p_mvhd = MP4_BoxGet( p_sys->p_root, "/moov/mvhd" ) ) )
...@@ -2477,37 +2450,3 @@ static void MP4_TrackSetELST( demux_t *p_demux, mp4_track_t *tk, ...@@ -2477,37 +2450,3 @@ static void MP4_TrackSetELST( demux_t *p_demux, mp4_track_t *tk,
msg_Warn( p_demux, "elst old=%d new=%d", i_elst_last, tk->i_elst ); msg_Warn( p_demux, "elst old=%d new=%d", i_elst_last, tk->i_elst );
} }
} }
static bool FindItem( demux_t *p_demux, playlist_t *p_playlist,
playlist_item_t **pp_item )
{
input_thread_t *p_input = (input_thread_t *)vlc_object_find( p_demux, VLC_OBJECT_INPUT, FIND_PARENT );
bool b_play = var_CreateGetBool( p_demux, "playlist-autostart" );
*pp_item = NULL;
if( p_input )
{
if( b_play && p_playlist->status.p_item &&
p_playlist->status.p_item->p_input == input_GetItem(p_input) )
{
msg_Dbg( p_playlist, "starting playlist playback" );
*pp_item = p_playlist->status.p_item;
b_play = true;
}
else
{
input_item_t *p_current = input_GetItem( p_input );
*pp_item = playlist_ItemGetByInput( p_playlist, p_current, false );
if( !*pp_item )
msg_Dbg( p_playlist, "unable to find item in playlist");
msg_Dbg( p_playlist, "not starting playlist playback");
b_play = false;
}
vlc_object_release( p_input );
}
return b_play;
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment