vlc/src/control/media_instance.c

651 lines
20 KiB
C
Raw Normal View History

/*****************************************************************************
* media_instance.c: Libvlc API Media Instance management functions
*****************************************************************************
* Copyright (C) 2005 the VideoLAN team
* $Id$
*
2006-02-01 19:06:48 +01:00
* Authors: Clément Stenac <zorglub@videolan.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
* (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.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
2006-01-13 00:10:04 +01:00
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
#include "libvlc_internal.h"
#include <vlc/libvlc.h>
#include <vlc_demux.h>
#include <vlc_input.h>
2006-11-26 20:07:37 +01:00
#include "input/input_internal.h"
/*
* Release the associated input thread
*
* Object lock is NOT held.
*/
static void release_input_thread( libvlc_media_instance_t *p_mi )
{
input_thread_t *p_input_thread;
vlc_bool_t should_destroy;
if( !p_mi || p_mi->i_input_id == -1 )
return;
p_input_thread = (input_thread_t*)vlc_object_get(
p_mi->p_libvlc_instance->p_libvlc_int,
p_mi->i_input_id );
p_mi->i_input_id = -1;
if( !p_input_thread )
return;
/* release for previous vlc_object_get */
vlc_object_release( p_input_thread );
should_destroy = p_input_thread->i_refcount == 1;
/* release for initial p_input_thread yield (see _new()) */
vlc_object_release( p_input_thread );
/* No one is tracking this input_thread appart us. Destroy it */
if( should_destroy )
{
/* We owned this one */
input_StopThread( p_input_thread );
var_Destroy( p_input_thread, "drawable" );
input_DestroyThread( p_input_thread );
}
else
{
/* XXX: hack the playlist doesn't retain the input thread,
* so we did it for the playlist (see _new_from_input_thread),
* revert that here. */
vlc_object_release( p_input_thread );
}
}
/*
* Retrieve the input thread. Be sure to release the object
* once you are done with it. (libvlc Internal)
*
* Object lock is held.
*/
input_thread_t *libvlc_get_input_thread( libvlc_media_instance_t *p_mi,
libvlc_exception_t *p_e )
{
input_thread_t *p_input_thread;
vlc_mutex_lock( &p_mi->object_lock );
if( !p_mi || p_mi->i_input_id == -1 )
{
vlc_mutex_unlock( &p_mi->object_lock );
2006-10-29 10:35:43 +01:00
RAISENULL( "Input is NULL" );
}
p_input_thread = (input_thread_t*)vlc_object_get(
p_mi->p_libvlc_instance->p_libvlc_int,
p_mi->i_input_id );
2006-10-29 10:35:43 +01:00
if( !p_input_thread )
{
vlc_mutex_unlock( &p_mi->object_lock );
2006-10-29 10:35:43 +01:00
RAISENULL( "Input does not exist" );
}
vlc_mutex_unlock( &p_mi->object_lock );
return p_input_thread;
}
/*
* input_state_changed (Private) (input var "state" Callback)
*/
static int
input_state_changed( vlc_object_t * p_this, char const * psz_cmd,
vlc_value_t oldval, vlc_value_t newval,
void * p_userdata )
{
libvlc_media_instance_t * p_mi = p_userdata;
libvlc_event_t event;
if( newval.i_int == oldval.i_int )
return VLC_SUCCESS; /* No change since last time, don't propagate */
switch ( newval.i_int )
{
case END_S:
event.type = libvlc_MediaInstanceReachedEnd;
break;
default:
return VLC_SUCCESS;
}
libvlc_event_send( p_mi->p_event_manager, &event );
return VLC_SUCCESS;
}
/**************************************************************************
* Create a Media Instance object
**************************************************************************/
libvlc_media_instance_t *
libvlc_media_instance_new( libvlc_instance_t * p_libvlc_instance,
libvlc_exception_t * p_e )
{
libvlc_media_instance_t * p_mi;
if( !p_libvlc_instance )
{
libvlc_exception_raise( p_e, "invalid libvlc instance" );
return NULL;
}
p_mi = malloc( sizeof(libvlc_media_instance_t) );
p_mi->p_md = NULL;
p_mi->drawable = 0;
p_mi->p_libvlc_instance = p_libvlc_instance;
p_mi->i_input_id = -1;
/* refcount strategy:
* - All items created by _new start with a refcount set to 1
* - Accessor _release decrease the refcount by 1, if after that
* operation the refcount is 0, the object is destroyed.
* - Accessor _retain increase the refcount by 1 (XXX: to implement) */
p_mi->i_refcount = 1;
/* object_lock strategy:
* - No lock held in constructor
* - Lock when accessing all variable this lock is held
* - Lock when attempting to destroy the object the lock is also held */
vlc_mutex_init( p_mi->p_libvlc_instance->p_libvlc_int,
&p_mi->object_lock );
p_mi->p_event_manager = libvlc_event_manager_new( p_mi,
p_libvlc_instance, p_e );
if( libvlc_exception_raised( p_e ) )
{
free( p_mi );
return NULL;
}
libvlc_event_manager_register_event_type( p_mi->p_event_manager,
libvlc_MediaInstanceReachedEnd, p_e );
return p_mi;
}
/**************************************************************************
* Create a Media Instance object with a media descriptor
**************************************************************************/
libvlc_media_instance_t *
libvlc_media_instance_new_from_media_descriptor(
libvlc_media_descriptor_t * p_md,
libvlc_exception_t *p_e )
{
libvlc_media_instance_t * p_mi;
p_mi = libvlc_media_instance_new( p_md->p_libvlc_instance, p_e );
if( !p_mi )
return NULL;
p_mi->p_md = libvlc_media_descriptor_duplicate( p_md );
return p_mi;
}
/**************************************************************************
* Create a new media instance object from an input_thread (Libvlc Internal)
**************************************************************************/
libvlc_media_instance_t * libvlc_media_instance_new_from_input_thread(
struct libvlc_instance_t *p_libvlc_instance,
input_thread_t *p_input,
libvlc_exception_t *p_e )
{
libvlc_media_instance_t * p_mi;
if( !p_input )
{
libvlc_exception_raise( p_e, "invalid input thread" );
return NULL;
}
p_mi = libvlc_media_instance_new( p_libvlc_instance, p_e );
if( !p_mi )
return NULL;
p_mi->p_md = libvlc_media_descriptor_new_from_input_item(
p_libvlc_instance,
p_input->p->input.p_item, p_e );
if( !p_mi->p_md )
{
libvlc_media_instance_destroy( p_mi );
return NULL;
}
p_mi->i_input_id = p_input->i_object_id;
/* will be released in media_instance_release() */
2007-06-23 13:54:40 +02:00
vlc_object_yield( p_input );
/* XXX: Hack as the playlist doesn't yield the input thread we retain
* the input for the playlist. (see corresponding hack in _release) */
vlc_object_yield( p_input );
return p_mi;
}
/**************************************************************************
* Destroy a Media Instance object (libvlc internal)
*
* Warning: No lock held here, but hey, this is internal.
**************************************************************************/
void libvlc_media_instance_destroy( libvlc_media_instance_t *p_mi )
{
input_thread_t *p_input_thread;
libvlc_exception_t p_e;
libvlc_exception_init( &p_e );
if( !p_mi )
return;
p_input_thread = libvlc_get_input_thread( p_mi, &p_e );
if( libvlc_exception_raised( &p_e ) )
{
libvlc_event_manager_release( p_mi->p_event_manager );
free( p_mi );
return; /* no need to worry about no input thread */
}
vlc_mutex_destroy( &p_mi->object_lock );
input_DestroyThread( p_input_thread );
libvlc_media_descriptor_release( p_mi->p_md );
free( p_mi );
}
/**************************************************************************
* Release a Media Instance object
**************************************************************************/
void libvlc_media_instance_release( libvlc_media_instance_t *p_mi )
{
if( !p_mi )
return;
vlc_mutex_lock( &p_mi->object_lock );
p_mi->i_refcount--;
if( p_mi->i_refcount > 0 )
{
vlc_mutex_unlock( &p_mi->object_lock );
return;
}
vlc_mutex_unlock( &p_mi->object_lock );
vlc_mutex_destroy( &p_mi->object_lock );
libvlc_event_manager_release( p_mi->p_event_manager );
release_input_thread( p_mi );
libvlc_media_descriptor_release( p_mi->p_md );
free( p_mi );
}
/**************************************************************************
* Retain a Media Instance object
**************************************************************************/
void libvlc_media_instance_retain( libvlc_media_instance_t *p_mi )
{
if( !p_mi )
return;
p_mi->i_refcount++;
}
/**************************************************************************
* Set the Media descriptor associated with the instance
**************************************************************************/
void libvlc_media_instance_set_media_descriptor(
libvlc_media_instance_t *p_mi,
libvlc_media_descriptor_t *p_md,
libvlc_exception_t *p_e )
{
(void)p_e;
if( !p_mi )
return;
vlc_mutex_lock( &p_mi->object_lock );
release_input_thread( p_mi );
libvlc_media_descriptor_release( p_mi->p_md );
if( !p_md )
{
p_mi->p_md = NULL;
vlc_mutex_unlock( &p_mi->object_lock );
return; /* It is ok to pass a NULL md */
}
p_mi->p_md = libvlc_media_descriptor_duplicate( p_md );
/* The policy here is to ignore that we were created using a different
* libvlc_instance, because we don't really care */
p_mi->p_libvlc_instance = p_md->p_libvlc_instance;
vlc_mutex_unlock( &p_mi->object_lock );
}
/**************************************************************************
* Get the Media descriptor associated with the instance
**************************************************************************/
libvlc_media_descriptor_t *
libvlc_media_instance_get_media_descriptor(
libvlc_media_instance_t *p_mi,
libvlc_exception_t *p_e )
{
(void)p_e;
if( !p_mi->p_md )
return NULL;
return libvlc_media_descriptor_duplicate( p_mi->p_md );
}
/**************************************************************************
* Get the event Manager
**************************************************************************/
libvlc_event_manager_t *
libvlc_media_instance_event_manager(
libvlc_media_instance_t *p_mi,
libvlc_exception_t *p_e )
{
(void)p_e;
return p_mi->p_event_manager;
}
/**************************************************************************
* Play
**************************************************************************/
void libvlc_media_instance_play( libvlc_media_instance_t *p_mi,
libvlc_exception_t *p_e )
{
input_thread_t * p_input_thread;
if( (p_input_thread = libvlc_get_input_thread( p_mi, p_e )) )
{
/* A thread alread exists, send it a play message */
vlc_value_t val;
val.i_int = PLAYING_S;
input_Control( p_input_thread, INPUT_CONTROL_SET_STATE, PLAYING_S );
vlc_object_release( p_input_thread );
return;
}
/* Ignore previous exception */
libvlc_exception_clear( p_e );
vlc_mutex_lock( &p_mi->object_lock );
if( !p_mi->p_md )
{
libvlc_exception_raise( p_e, "no associated media descriptor" );
vlc_mutex_unlock( &p_mi->object_lock );
return;
}
p_input_thread = input_CreateThread( p_mi->p_libvlc_instance->p_libvlc_int,
p_mi->p_md->p_input_item );
p_mi->i_input_id = p_input_thread->i_object_id;
if( p_mi->drawable )
{
vlc_value_t val;
val.i_int = p_mi->drawable;
var_Create( p_input_thread, "drawable", VLC_VAR_DOINHERIT );
var_Set( p_input_thread, "drawable", val );
}
var_AddCallback( p_input_thread, "state", input_state_changed, p_mi );
/* will be released in media_instance_release() */
vlc_object_yield( p_input_thread );
vlc_mutex_unlock( &p_mi->object_lock );
}
/**************************************************************************
* Pause
**************************************************************************/
void libvlc_media_instance_pause( libvlc_media_instance_t *p_mi,
libvlc_exception_t *p_e )
{
input_thread_t * p_input_thread;
vlc_value_t val;
val.i_int = PAUSE_S;
p_input_thread = libvlc_get_input_thread( p_mi, p_e );
if( !p_input_thread )
return;
input_Control( p_input_thread, INPUT_CONTROL_SET_STATE, val );
vlc_object_release( p_input_thread );
}
/**************************************************************************
* Stop
**************************************************************************/
void libvlc_media_instance_stop( libvlc_media_instance_t *p_mi,
libvlc_exception_t *p_e )
{
//libvlc_exception_raise( p_e, "Not implemented" );
}
/**************************************************************************
* Set Drawable
**************************************************************************/
void libvlc_media_instance_set_drawable( libvlc_media_instance_t *p_mi,
libvlc_drawable_t drawable,
libvlc_exception_t *p_e )
{
p_mi->drawable = drawable;
}
/**************************************************************************
* Getters for stream information
**************************************************************************/
vlc_int64_t libvlc_media_instance_get_length(
libvlc_media_instance_t *p_mi,
libvlc_exception_t *p_e )
{
input_thread_t *p_input_thread;
vlc_value_t val;
p_input_thread = libvlc_get_input_thread ( p_mi, p_e);
if( !p_input_thread )
2006-10-29 10:35:43 +01:00
return -1;
var_Get( p_input_thread, "length", &val );
vlc_object_release( p_input_thread );
return (val.i_time+500LL)/1000LL;
}
vlc_int64_t libvlc_media_instance_get_time(
libvlc_media_instance_t *p_mi,
libvlc_exception_t *p_e )
{
input_thread_t *p_input_thread;
vlc_value_t val;
p_input_thread = libvlc_get_input_thread ( p_mi, p_e );
if( !p_input_thread )
2006-10-29 10:35:43 +01:00
return -1;
var_Get( p_input_thread , "time", &val );
vlc_object_release( p_input_thread );
return (val.i_time+500LL)/1000LL;
}
void libvlc_media_instance_set_time(
libvlc_media_instance_t *p_mi,
vlc_int64_t time,
libvlc_exception_t *p_e )
{
input_thread_t *p_input_thread;
vlc_value_t value;
p_input_thread = libvlc_get_input_thread ( p_mi, p_e );
if( !p_input_thread )
2006-10-29 10:35:43 +01:00
return;
value.i_time = time*1000LL;
var_Set( p_input_thread, "time", value );
vlc_object_release( p_input_thread );
}
void libvlc_media_instance_set_position(
libvlc_media_instance_t *p_mi,
float position,
libvlc_exception_t *p_e )
{
input_thread_t *p_input_thread;
vlc_value_t val;
val.f_float = position;
2006-10-29 10:35:43 +01:00
p_input_thread = libvlc_get_input_thread ( p_mi, p_e);
if( !p_input_thread )
2006-10-29 10:35:43 +01:00
return;
var_Set( p_input_thread, "position", val );
vlc_object_release( p_input_thread );
}
float libvlc_media_instance_get_position(
libvlc_media_instance_t *p_mi,
libvlc_exception_t *p_e )
{
input_thread_t *p_input_thread;
vlc_value_t val;
p_input_thread = libvlc_get_input_thread ( p_mi, p_e );
if( !p_input_thread )
2006-10-29 10:35:43 +01:00
return -1.0;
var_Get( p_input_thread, "position", &val );
vlc_object_release( p_input_thread );
return val.f_float;
}
float libvlc_media_instance_get_fps(
libvlc_media_instance_t *p_mi,
libvlc_exception_t *p_e)
{
double f_fps = 0.0;
input_thread_t *p_input_thread;
p_input_thread = libvlc_get_input_thread ( p_mi, p_e );
if( !p_input_thread )
2006-10-29 10:35:43 +01:00
return 0.0;
if( (NULL == p_input_thread->p->input.p_demux)
|| demux2_Control( p_input_thread->p->input.p_demux, DEMUX_GET_FPS, &f_fps )
|| f_fps < 0.1 )
2006-06-10 19:36:22 +02:00
{
vlc_object_release( p_input_thread );
return 0.0;
2006-06-10 19:36:22 +02:00
}
else
2006-06-10 19:36:22 +02:00
{
vlc_object_release( p_input_thread );
return( f_fps );
2006-06-10 19:36:22 +02:00
}
}
vlc_bool_t libvlc_media_instance_will_play(
libvlc_media_instance_t *p_mi,
libvlc_exception_t *p_e)
{
input_thread_t *p_input_thread =
libvlc_get_input_thread ( p_mi, p_e);
if ( !p_input_thread )
2006-10-29 10:35:43 +01:00
return VLC_FALSE;
if ( !p_input_thread->b_die && !p_input_thread->b_dead )
{
vlc_object_release( p_input_thread );
return VLC_TRUE;
}
vlc_object_release( p_input_thread );
return VLC_FALSE;
}
void libvlc_media_instance_set_rate(
libvlc_media_instance_t *p_mi,
float rate,
libvlc_exception_t *p_e )
{
input_thread_t *p_input_thread;
vlc_value_t val;
if( rate <= 0 )
RAISEVOID( "Rate value is invalid" );
val.i_int = 1000.0f/rate;
2006-10-29 10:35:43 +01:00
p_input_thread = libvlc_get_input_thread ( p_mi, p_e);
if ( !p_input_thread )
2006-10-29 10:35:43 +01:00
return;
var_Set( p_input_thread, "rate", val );
vlc_object_release( p_input_thread );
}
float libvlc_media_instance_get_rate(
libvlc_media_instance_t *p_mi,
libvlc_exception_t *p_e )
{
input_thread_t *p_input_thread;
vlc_value_t val;
p_input_thread = libvlc_get_input_thread ( p_mi, p_e);
if ( !p_input_thread )
2006-10-29 10:35:43 +01:00
return -1.0;
var_Get( p_input_thread, "rate", &val );
vlc_object_release( p_input_thread );
return (float)1000.0f/val.i_int;
}
int libvlc_media_instance_get_state(
libvlc_media_instance_t *p_mi,
libvlc_exception_t *p_e )
{
input_thread_t *p_input_thread;
vlc_value_t val;
p_input_thread = libvlc_get_input_thread ( p_mi, p_e );
if ( !p_input_thread )
return 0;
var_Get( p_input_thread, "state", &val );
vlc_object_release( p_input_thread );
return val.i_int;
}