Commit a38975fd authored by Derk-Jan Hartman's avatar Derk-Jan Hartman

* Move sgimb demux to the playlist demux, and port it to the new playlist API

parent 170df325
...@@ -15,7 +15,6 @@ SOURCES_ps = ps.c ps.h ...@@ -15,7 +15,6 @@ SOURCES_ps = ps.c ps.h
SOURCES_mod = mod.c SOURCES_mod = mod.c
SOURCES_pva = pva.c SOURCES_pva = pva.c
SOURCES_aiff = aiff.c SOURCES_aiff = aiff.c
SOURCES_sgimb = sgimb.c
SOURCES_mjpeg = mjpeg.c SOURCES_mjpeg = mjpeg.c
SOURCES_subtitle = subtitle.c SOURCES_subtitle = subtitle.c
SOURCES_ty = ty.c SOURCES_ty = ty.c
......
...@@ -11,6 +11,7 @@ SOURCES_playlist = \ ...@@ -11,6 +11,7 @@ SOURCES_playlist = \
xspf.h \ xspf.h \
shoutcast.c \ shoutcast.c \
asx.c \ asx.c \
sgimb.c \
$(NULL) $(NULL)
...@@ -32,7 +32,6 @@ ...@@ -32,7 +32,6 @@
#include <vlc/vlc.h> #include <vlc/vlc.h>
#include <vlc/input.h> #include <vlc/input.h>
#include <vlc/intf.h>
#include <errno.h> /* ENOMEM */ #include <errno.h> /* ENOMEM */
#include "playlist.h" #include "playlist.h"
......
...@@ -101,6 +101,11 @@ vlc_module_begin(); ...@@ -101,6 +101,11 @@ vlc_module_begin();
add_shortcut( "asx-open" ); add_shortcut( "asx-open" );
set_capability( "demux2", 10 ); set_capability( "demux2", 10 );
set_callbacks( E_(Import_ASX), E_(Close_ASX) ); set_callbacks( E_(Import_ASX), E_(Close_ASX) );
add_submodule();
set_description( _("Kasenna MediaBase parser") );
add_shortcut( "sgimb" );
set_capability( "demux2", 10 );
set_callbacks( E_(Import_SGIMB), E_(Close_SGIMB) );
vlc_module_end(); vlc_module_end();
......
...@@ -56,6 +56,9 @@ void E_(Close_Shoutcast) ( vlc_object_t * ); ...@@ -56,6 +56,9 @@ void E_(Close_Shoutcast) ( vlc_object_t * );
int E_(Import_ASX) ( vlc_object_t * ); int E_(Import_ASX) ( vlc_object_t * );
void E_(Close_ASX) ( vlc_object_t * ); void E_(Close_ASX) ( vlc_object_t * );
int E_(Import_SGIMB) ( vlc_object_t * );
void E_(Close_SGIMB) ( vlc_object_t * );
#define INIT_PLAYLIST_STUFF \ #define INIT_PLAYLIST_STUFF \
int i_parent_id; \ int i_parent_id; \
vlc_bool_t b_play; \ vlc_bool_t b_play; \
......
...@@ -101,22 +101,7 @@ ...@@ -101,22 +101,7 @@
#include <vlc/vlc.h> #include <vlc/vlc.h>
#include <vlc/input.h> #include <vlc/input.h>
#include <vlc_playlist.h> #include "playlist.h"
/*****************************************************************************
* Module descriptor
*****************************************************************************/
static int Activate ( vlc_object_t * );
static void Deactivate( vlc_object_t * );
vlc_module_begin();
set_description( _("Kasenna MediaBase parser") );
set_category( CAT_INPUT );
set_subcategory( SUBCAT_INPUT_DEMUX );
set_capability( "demux2", 170 );
set_callbacks( Activate, Deactivate );
add_shortcut( "sgimb" );
vlc_module_end();
/***************************************************************************** /*****************************************************************************
* Local prototypes * Local prototypes
...@@ -147,7 +132,7 @@ static int Control( demux_t *p_demux, int i_query, va_list args ); ...@@ -147,7 +132,7 @@ static int Control( demux_t *p_demux, int i_query, va_list args );
/***************************************************************************** /*****************************************************************************
* Activate: initializes m3u demux structures * Activate: initializes m3u demux structures
*****************************************************************************/ *****************************************************************************/
static int Activate( vlc_object_t * p_this ) int E_(Import_SGIMB)( vlc_object_t * p_this )
{ {
demux_t *p_demux = (demux_t *)p_this; demux_t *p_demux = (demux_t *)p_this;
demux_sys_t *p_sys; demux_sys_t *p_sys;
...@@ -185,6 +170,8 @@ static int Activate( vlc_object_t * p_this ) ...@@ -185,6 +170,8 @@ static int Activate( vlc_object_t * p_this )
p_sys->i_sid = 0; p_sys->i_sid = 0;
p_sys->b_rtsp_kasenna = VLC_FALSE; p_sys->b_rtsp_kasenna = VLC_FALSE;
p_sys->b_concert = VLC_FALSE; p_sys->b_concert = VLC_FALSE;
msg_Dbg( p_demux, "using sgimb playlist import");
return VLC_SUCCESS; return VLC_SUCCESS;
} }
...@@ -195,7 +182,7 @@ static int Activate( vlc_object_t * p_this ) ...@@ -195,7 +182,7 @@ static int Activate( vlc_object_t * p_this )
/***************************************************************************** /*****************************************************************************
* Deactivate: frees unused data * Deactivate: frees unused data
*****************************************************************************/ *****************************************************************************/
static void Deactivate( vlc_object_t *p_this ) void E_(Close_SGIMB)( vlc_object_t *p_this )
{ {
demux_t *p_demux = (demux_t*)p_this; demux_t *p_demux = (demux_t*)p_this;
demux_sys_t *p_sys = p_demux->p_sys; demux_sys_t *p_sys = p_demux->p_sys;
...@@ -333,21 +320,10 @@ static int ParseLine ( demux_t *p_demux, char *psz_line ) ...@@ -333,21 +320,10 @@ static int ParseLine ( demux_t *p_demux, char *psz_line )
static int Demux ( demux_t *p_demux ) static int Demux ( demux_t *p_demux )
{ {
demux_sys_t *p_sys = p_demux->p_sys; demux_sys_t *p_sys = p_demux->p_sys;
playlist_t *p_playlist; input_item_t *p_child = NULL;
playlist_item_t *p_item;
char *psz_line; char *psz_line;
p_playlist = (playlist_t *) vlc_object_find( p_demux, VLC_OBJECT_PLAYLIST, INIT_PLAYLIST_STUFF;
FIND_ANYWHERE );
if( !p_playlist )
{
msg_Err( p_demux, "can't find playlist" );
return -1;
}
p_item = playlist_LockItemGetByInput( p_playlist,
((input_thread_t *)p_demux->p_parent)->input.p_item );
playlist_ItemToNode( p_playlist, p_item );
while( ( psz_line = stream_ReadLine( p_demux->s ) ) ) while( ( psz_line = stream_ReadLine( p_demux->s ) ) )
{ {
...@@ -401,48 +377,44 @@ static int Demux ( demux_t *p_demux ) ...@@ -401,48 +377,44 @@ static int Demux ( demux_t *p_demux )
free( temp ); free( temp );
} }
msg_Err( p_playlist, "SGIMB playlist handling is broken" ); p_child = input_ItemNewWithType( (vlc_object_t *)p_playlist, p_sys->psz_uri,
#if 0 p_sys->psz_name ? p_sys->psz_name : p_sys->psz_uri,
p_child = playlist_ItemNew( p_playlist, p_sys->psz_uri, 0, NULL, p_sys->i_duration, ITEM_TYPE_NET );
p_sys->psz_name ? p_sys->psz_name : p_sys->psz_uri );
if( !p_child )
if( !p_child || !p_child->input.psz_uri )
{ {
msg_Err( p_demux, "A valid playlistitem could not be created" ); msg_Err( p_demux, "A valid playlistitem could not be created" );
return VLC_EGENERIC; return VLC_EGENERIC;
} }
vlc_input_item_CopyOptions( p_current->p_input, p_child );
if( p_sys->i_packet_size && p_sys->psz_mcast_ip ) if( p_sys->i_packet_size && p_sys->psz_mcast_ip )
{ {
char *psz_option; char *psz_option;
p_sys->i_packet_size += 1000; p_sys->i_packet_size += 1000;
asprintf( &psz_option, "mtu=%i", p_sys->i_packet_size ); asprintf( &psz_option, "mtu=%i", p_sys->i_packet_size );
playlist_ItemAddOption( p_child, psz_option ); vlc_input_item_AddOption( p_child, psz_option );
free( psz_option ); free( psz_option );
} }
if( !p_sys->psz_mcast_ip ) if( !p_sys->psz_mcast_ip )
{ {
char *psz_option; char *psz_option;
asprintf( &psz_option, "rtsp-caching=5000" ); asprintf( &psz_option, "rtsp-caching=5000" );
playlist_ItemAddOption( p_child, psz_option ); vlc_input_item_AddOption( p_child, psz_option );
free( psz_option ); free( psz_option );
} }
if( !p_sys->psz_mcast_ip && p_sys->b_rtsp_kasenna ) if( !p_sys->psz_mcast_ip && p_sys->b_rtsp_kasenna )
{ {
char *psz_option; char *psz_option;
asprintf( &psz_option, "rtsp-kasenna" ); asprintf( &psz_option, "rtsp-kasenna" );
playlist_ItemAddOption( p_child, psz_option ); vlc_input_item_AddOption( p_child, psz_option );
free( psz_option ); free( psz_option );
} }
playlist_ItemSetDuration( p_child, p_sys->i_duration ); playlist_AddWhereverNeeded( p_playlist, p_child, p_current,
playlist_NodeAddItem( p_playlist, p_child, p_item->pp_parents[0]->i_view, p_item, PLAYLIST_APPEND, PLAYLIST_END ); p_item_in_category, (i_parent_id > 0 )? VLC_TRUE : VLC_FALSE,
playlist_CopyParents( p_item, p_child ); PLAYLIST_APPEND );
playlist_Control( p_playlist, PLAYLIST_VIEWPLAY, HANDLE_PLAY_AND_RELEASE
p_playlist->status.i_view,
p_playlist->status.p_item, NULL );
#endif
vlc_object_release( p_playlist );
return VLC_SUCCESS; return VLC_SUCCESS;
} }
......
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