Commit 1c0551f1 authored by Clément Stenac's avatar Clément Stenac

Clean up a bit of redundant code

parent f2453c92
...@@ -232,7 +232,7 @@ static inline int __var_SetInteger( vlc_object_t *p_obj, const char *psz_name, i ...@@ -232,7 +232,7 @@ static inline int __var_SetInteger( vlc_object_t *p_obj, const char *psz_name, i
val.i_int = i; val.i_int = i;
return __var_Set( p_obj, psz_name, val ); return __var_Set( p_obj, psz_name, val );
} }
#define var_SetInteger(a,b,c) __var_SetInteger( VLC_OBJECT(a),b,c)
/** /**
* Set the value of an boolean variable * Set the value of an boolean variable
* *
...@@ -301,11 +301,8 @@ static inline int __var_SetVoid( vlc_object_t *p_obj, const char *psz_name ) ...@@ -301,11 +301,8 @@ static inline int __var_SetVoid( vlc_object_t *p_obj, const char *psz_name )
val.b_bool = VLC_TRUE; val.b_bool = VLC_TRUE;
return __var_Set( p_obj, psz_name, val ); return __var_Set( p_obj, psz_name, val );
} }
#define var_SetVoid(a,b) __var_SetVoid( VLC_OBJECT(a),b)
/**
* __var_SetInteger() with automatic casting
*/
#define var_SetInteger(a,b,c) __var_SetInteger( VLC_OBJECT(a),b,c)
/** /**
* __var_SetBool() with automatic casting * __var_SetBool() with automatic casting
*/ */
...@@ -323,14 +320,10 @@ static inline int __var_SetVoid( vlc_object_t *p_obj, const char *psz_name ) ...@@ -323,14 +320,10 @@ static inline int __var_SetVoid( vlc_object_t *p_obj, const char *psz_name )
* __var_SetString() with automatic casting * __var_SetString() with automatic casting
*/ */
#define var_SetString(a,b,c) __var_SetString( VLC_OBJECT(a),b,c) #define var_SetString(a,b,c) __var_SetString( VLC_OBJECT(a),b,c)
/**
* __var_SetVoid() with automatic casting
*/
#define var_SetVoid(a,b) __var_SetVoid( VLC_OBJECT(a),b)
/** /**
* Get a integer value * Get an integer value
* *
* \param p_obj The object that holds the variable * \param p_obj The object that holds the variable
* \param psz_name The name of the variable * \param psz_name The name of the variable
*/ */
...@@ -425,6 +418,31 @@ static inline char *__var_GetString( vlc_object_t *p_obj, const char *psz_name ) ...@@ -425,6 +418,31 @@ static inline char *__var_GetString( vlc_object_t *p_obj, const char *psz_name )
#define var_GetString(a,b) __var_GetString( VLC_OBJECT(a),b) #define var_GetString(a,b) __var_GetString( VLC_OBJECT(a),b)
/**
* Increment an integer variable
* \param p_obj the object that holds the variable
* \param psz_name the name of the variable
*/
static inline void __var_IncInteger( vlc_object_t *p_obj, const char *psz_name )
{
int i_val = __var_GetInteger( p_obj, psz_name );
__var_SetInteger( p_obj, psz_name, ++i_val );
}
#define var_IncInteger(a,b) __var_IncInteger( VLC_OBJECT(a), b )
/**
* Decrement an integer variable
* \param p_obj the object that holds the variable
* \param psz_name the name of the variable
*/
static inline void __var_DecInteger( vlc_object_t *p_obj, const char *psz_name )
{
int i_val = __var_GetInteger( p_obj, psz_name );
__var_SetInteger( p_obj, psz_name, --i_val );
}
#define var_DecInteger(a,b) __var_DecInteger( VLC_OBJECT(a), b )
/** /**
* Create a integer variable with inherit and get its value. * Create a integer variable with inherit and get its value.
* *
......
...@@ -106,14 +106,8 @@ vlc_module_end(); ...@@ -106,14 +106,8 @@ vlc_module_end();
static int Open( vlc_object_t *p_this ) static int Open( vlc_object_t *p_this )
{ {
intf_thread_t *p_intf = (intf_thread_t *)p_this; intf_thread_t *p_intf = (intf_thread_t *)p_this;
MALLOC_ERR( p_intf->P_sys, intf_sys_t );
/* Allocate instance and initialize some members */
p_intf->p_sys = malloc( sizeof( intf_sys_t ) );
if( p_intf->p_sys == NULL )
{
msg_Err( p_intf, "out of memory" );
return 1;
}
vlc_mutex_init( p_intf, &p_intf->p_sys->change_lock ); vlc_mutex_init( p_intf, &p_intf->p_sys->change_lock );
p_intf->p_sys->i_size = 0; p_intf->p_sys->i_size = 0;
p_intf->pf_run = Run; p_intf->pf_run = Run;
...@@ -122,7 +116,7 @@ static int Open( vlc_object_t *p_this ) ...@@ -122,7 +116,7 @@ static int Open( vlc_object_t *p_this )
p_intf->p_sys->p_vout = NULL; p_intf->p_sys->p_vout = NULL;
var_AddCallback( p_intf->p_libvlc, "key-pressed", KeyEvent, p_intf ); var_AddCallback( p_intf->p_libvlc, "key-pressed", KeyEvent, p_intf );
return 0; return VLC_SUCCESS;
} }
/***************************************************************************** /*****************************************************************************
...@@ -150,13 +144,13 @@ static void Close( vlc_object_t *p_this ) ...@@ -150,13 +144,13 @@ static void Close( vlc_object_t *p_this )
*****************************************************************************/ *****************************************************************************/
static void Run( intf_thread_t *p_intf ) static void Run( intf_thread_t *p_intf )
{ {
playlist_t *p_playlist = NULL;
input_thread_t *p_input = NULL; input_thread_t *p_input = NULL;
vout_thread_t *p_vout = NULL; vout_thread_t *p_vout = NULL;
vout_thread_t *p_last_vout = NULL; vout_thread_t *p_last_vout = NULL;
struct hotkey *p_hotkeys = p_intf->p_libvlc->p_hotkeys; struct hotkey *p_hotkeys = p_intf->p_libvlc->p_hotkeys;
vlc_value_t val; vlc_value_t val;
int i; int i;
playlist_t *p_playlist = pl_Yield( p_intf );
/* Initialize hotkey structure */ /* Initialize hotkey structure */
for( i = 0; p_hotkeys[i].psz_action != NULL; i++ ) for( i = 0; p_hotkeys[i].psz_action != NULL; i++ )
...@@ -181,11 +175,11 @@ static void Run( intf_thread_t *p_intf ) ...@@ -181,11 +175,11 @@ static void Run( intf_thread_t *p_intf )
/* Update the input */ /* Update the input */
if( p_intf->p_sys->p_input == NULL ) if( p_intf->p_sys->p_input == NULL )
{ {
p_playlist = pl_Yield( p_intf ); PL_LOCK;
p_intf->p_sys->p_input = p_playlist->p_input; p_intf->p_sys->p_input = p_playlist->p_input;
if( p_intf->p_sys->p_input ) if( p_intf->p_sys->p_input )
vlc_object_yield( p_intf->p_sys->p_input ); vlc_object_yield( p_intf->p_sys->p_input );
vlc_object_release( p_playlist ); PL_UNLOCK;
} }
else if( p_intf->p_sys->p_input->b_dead ) else if( p_intf->p_sys->p_input->b_dead )
{ {
...@@ -277,23 +271,9 @@ static void Run( intf_thread_t *p_intf ) ...@@ -277,23 +271,9 @@ static void Run( intf_thread_t *p_intf )
} }
} }
else if( i_action == ACTIONID_INTF_SHOW ) else if( i_action == ACTIONID_INTF_SHOW )
{ var_SetBool( p_playlist, "intf-show", VLC_TRUE );
val.b_bool = VLC_TRUE;
p_playlist = pl_Yield( p_intf );
var_Set( p_playlist, "intf-show", val );
vlc_object_release( p_playlist );
}
else if( i_action == ACTIONID_INTF_HIDE ) else if( i_action == ACTIONID_INTF_HIDE )
{ var_SetBool( p_playlist, "intf-show", VLC_FALSE );
val.b_bool = VLC_FALSE;
p_playlist = vlc_object_find( p_intf, VLC_OBJECT_PLAYLIST,
FIND_ANYWHERE );
if( p_playlist )
{
var_Set( p_playlist, "intf-show", val );
vlc_object_release( p_playlist );
}
}
else if( i_action == ACTIONID_SNAPSHOT ) else if( i_action == ACTIONID_SNAPSHOT )
{ {
if( p_vout ) vout_Control( p_vout, VOUT_SNAPSHOT ); if( p_vout ) vout_Control( p_vout, VOUT_SNAPSHOT );
...@@ -308,15 +288,9 @@ static void Run( intf_thread_t *p_intf ) ...@@ -308,15 +288,9 @@ static void Run( intf_thread_t *p_intf )
} }
else else
{ {
p_playlist = vlc_object_find( p_intf, VLC_OBJECT_PLAYLIST, var_Get( p_playlist, "fullscreen", &val );
FIND_ANYWHERE ); val.b_bool = !val.b_bool;
if( p_playlist ) var_Set( p_playlist, "fullscreen", val );
{
var_Get( p_playlist, "fullscreen", &val );
val.b_bool = !val.b_bool;
var_Set( p_playlist, "fullscreen", val );
vlc_object_release( p_playlist );
}
} }
} }
else if( i_action == ACTIONID_PLAY_PAUSE ) else if( i_action == ACTIONID_PLAY_PAUSE )
...@@ -343,13 +317,7 @@ static void Run( intf_thread_t *p_intf ) ...@@ -343,13 +317,7 @@ static void Run( intf_thread_t *p_intf )
} }
else else
{ {
p_playlist = vlc_object_find( p_intf, VLC_OBJECT_PLAYLIST, playlist_Play( p_playlist );
FIND_ANYWHERE );
if( p_playlist )
{
playlist_Play( p_playlist );
vlc_object_release( p_playlist );
}
} }
} }
else if( p_input ) else if( p_input )
...@@ -611,96 +579,46 @@ static void Run( intf_thread_t *p_intf ) ...@@ -611,96 +579,46 @@ static void Run( intf_thread_t *p_intf )
} }
} }
else if( i_action == ACTIONID_CROP_TOP && p_vout ) else if( i_action == ACTIONID_CROP_TOP && p_vout )
{ var_IncInteger( p_vout, "crop-top" );
int i_val = var_GetInteger( p_vout, "crop-top" );
var_SetInteger( p_vout, "crop-top", i_val+1 );
}
else if( i_action == ACTIONID_UNCROP_TOP && p_vout ) else if( i_action == ACTIONID_UNCROP_TOP && p_vout )
{ var_DecInteger( p_vout, "crop-top" );
int i_val = var_GetInteger( p_vout, "crop-top" );
if( i_val != 0 )
var_SetInteger( p_vout, "crop-top", i_val-1 );
}
else if( i_action == ACTIONID_CROP_BOTTOM && p_vout ) else if( i_action == ACTIONID_CROP_BOTTOM && p_vout )
{ var_IncInteger( p_vout, "crop-bottom" );
int i_val = var_GetInteger( p_vout, "crop-bottom" );
var_SetInteger( p_vout, "crop-bottom", i_val+1 );
}
else if( i_action == ACTIONID_UNCROP_BOTTOM && p_vout ) else if( i_action == ACTIONID_UNCROP_BOTTOM && p_vout )
{ var_DecInteger( p_vout, "crop-bottom" );
int i_val = var_GetInteger( p_vout, "crop-bottom" );
if( i_val != 0 )
var_SetInteger( p_vout, "crop-bottom", i_val-1 );
}
else if( i_action == ACTIONID_CROP_LEFT && p_vout ) else if( i_action == ACTIONID_CROP_LEFT && p_vout )
{ var_IncInteger( p_vout, "crop-left" );
int i_val = var_GetInteger( p_vout, "crop-left" );
var_SetInteger( p_vout, "crop-left", i_val+1 );
}
else if( i_action == ACTIONID_UNCROP_LEFT && p_vout ) else if( i_action == ACTIONID_UNCROP_LEFT && p_vout )
{ var_DecInteger( p_vout, "crop-left" );
int i_val = var_GetInteger( p_vout, "crop-left" );
if( i_val != 0 )
var_SetInteger( p_vout, "crop-left", i_val-1 );
}
else if( i_action == ACTIONID_CROP_RIGHT && p_vout ) else if( i_action == ACTIONID_CROP_RIGHT && p_vout )
{ var_IncInteger( p_vout, "crop-right" );
int i_val = var_GetInteger( p_vout, "crop-right" );
var_SetInteger( p_vout, "crop-right", i_val+1 );
}
else if( i_action == ACTIONID_UNCROP_RIGHT && p_vout ) else if( i_action == ACTIONID_UNCROP_RIGHT && p_vout )
{ var_DecInteger( p_vout, "crop-right" );
int i_val = var_GetInteger( p_vout, "crop-right" );
if( i_val != 0 )
var_SetInteger( p_vout, "crop-right", i_val-1 );
}
else if( i_action == ACTIONID_NEXT ) else if( i_action == ACTIONID_NEXT )
{ {
p_playlist = vlc_object_find( p_intf, VLC_OBJECT_PLAYLIST, vout_OSDMessage( VLC_OBJECT(p_input), DEFAULT_CHAN, _("Next") );
FIND_ANYWHERE ); playlist_Next( p_playlist );
if( p_playlist )
{
vout_OSDMessage( VLC_OBJECT(p_input), DEFAULT_CHAN,
_("Next") );
playlist_Next( p_playlist );
vlc_object_release( p_playlist );
}
} }
else if( i_action == ACTIONID_PREV ) else if( i_action == ACTIONID_PREV )
{ {
p_playlist = vlc_object_find( p_intf, VLC_OBJECT_PLAYLIST, vout_OSDMessage( VLC_OBJECT(p_input), DEFAULT_CHAN,
FIND_ANYWHERE ); _("Previous") );
if( p_playlist ) playlist_Prev( p_playlist );
{
vout_OSDMessage( VLC_OBJECT(p_input), DEFAULT_CHAN,
_("Previous") );
playlist_Prev( p_playlist );
vlc_object_release( p_playlist );
}
} }
else if( i_action == ACTIONID_STOP ) else if( i_action == ACTIONID_STOP )
{ {
p_playlist = vlc_object_find( p_intf, VLC_OBJECT_PLAYLIST, playlist_Stop( p_playlist );
FIND_ANYWHERE );
if( p_playlist )
{
playlist_Stop( p_playlist );
vlc_object_release( p_playlist );
}
} }
else if( i_action == ACTIONID_FASTER ) else if( i_action == ACTIONID_FASTER )
{ {
vlc_value_t val; var_SetVoid( p_input, "rate-faster" );
val.b_bool = VLC_TRUE;
var_Set( p_input, "rate-faster", val );
vout_OSDMessage( VLC_OBJECT(p_input), DEFAULT_CHAN, vout_OSDMessage( VLC_OBJECT(p_input), DEFAULT_CHAN,
_("Faster") ); _("Faster") );
} }
else if( i_action == ACTIONID_SLOWER ) else if( i_action == ACTIONID_SLOWER )
{ {
vlc_value_t val; var_SetVoid( p_input, "rate-slower" );
val.b_bool = VLC_TRUE;
var_Set( p_input, "rate-slower", val );
vout_OSDMessage( VLC_OBJECT(p_input), DEFAULT_CHAN, vout_OSDMessage( VLC_OBJECT(p_input), DEFAULT_CHAN,
_("Slower") ); _("Slower") );
} }
...@@ -720,36 +638,20 @@ static void Run( intf_thread_t *p_intf ) ...@@ -720,36 +638,20 @@ static void Run( intf_thread_t *p_intf )
} }
/* Only makes sense with DVD */ /* Only makes sense with DVD */
else if( i_action == ACTIONID_TITLE_PREV ) else if( i_action == ACTIONID_TITLE_PREV )
{ var_SetVoid( p_input, "prev-title" );
val.b_bool = VLC_TRUE;
var_Set( p_input, "prev-title", val );
}
else if( i_action == ACTIONID_TITLE_NEXT ) else if( i_action == ACTIONID_TITLE_NEXT )
{ var_SetVoid( p_input, "next-title" );
val.b_bool = VLC_TRUE;
var_Set( p_input, "next-title", val );
}
else if( i_action == ACTIONID_CHAPTER_PREV ) else if( i_action == ACTIONID_CHAPTER_PREV )
{ var_SetVoid( p_input, "prev-chapter" );
val.b_bool = VLC_TRUE;
var_Set( p_input, "prev-chapter", val );
}
else if( i_action == ACTIONID_CHAPTER_NEXT ) else if( i_action == ACTIONID_CHAPTER_NEXT )
{ var_SetVoid( p_input, "next-chapter" );
val.b_bool = VLC_TRUE;
var_Set( p_input, "next-chapter", val );
}
else if( i_action == ACTIONID_DISC_MENU ) else if( i_action == ACTIONID_DISC_MENU )
{ var_SetInteger( p_input, "title 0", 2 );
vlc_value_t val; val.i_int = 2;
var_Set( p_input, "title 0", val);
}
else if( i_action == ACTIONID_SUBDELAY_DOWN ) else if( i_action == ACTIONID_SUBDELAY_DOWN )
{ {
int64_t i_delay = var_GetTime( p_input, "spu-delay" ); int64_t i_delay = var_GetTime( p_input, "spu-delay" );
i_delay -= 50000; /* 50 ms */ i_delay -= 50000; /* 50 ms */
var_SetTime( p_input, "spu-delay", i_delay ); var_SetTime( p_input, "spu-delay", i_delay );
ClearChannels( p_intf, p_vout ); ClearChannels( p_intf, p_vout );
vout_OSDMessage( p_intf, DEFAULT_CHAN, "Subtitle delay %i ms", vout_OSDMessage( p_intf, DEFAULT_CHAN, "Subtitle delay %i ms",
...@@ -758,9 +660,7 @@ static void Run( intf_thread_t *p_intf ) ...@@ -758,9 +660,7 @@ static void Run( intf_thread_t *p_intf )
else if( i_action == ACTIONID_SUBDELAY_UP ) else if( i_action == ACTIONID_SUBDELAY_UP )
{ {
int64_t i_delay = var_GetTime( p_input, "spu-delay" ); int64_t i_delay = var_GetTime( p_input, "spu-delay" );
i_delay += 50000; /* 50 ms */ i_delay += 50000; /* 50 ms */
var_SetTime( p_input, "spu-delay", i_delay ); var_SetTime( p_input, "spu-delay", i_delay );
ClearChannels( p_intf, p_vout ); ClearChannels( p_intf, p_vout );
vout_OSDMessage( p_intf, DEFAULT_CHAN, "Subtitle delay %i ms", vout_OSDMessage( p_intf, DEFAULT_CHAN, "Subtitle delay %i ms",
...@@ -769,9 +669,7 @@ static void Run( intf_thread_t *p_intf ) ...@@ -769,9 +669,7 @@ static void Run( intf_thread_t *p_intf )
else if( i_action == ACTIONID_AUDIODELAY_DOWN ) else if( i_action == ACTIONID_AUDIODELAY_DOWN )
{ {
int64_t i_delay = var_GetTime( p_input, "audio-delay" ); int64_t i_delay = var_GetTime( p_input, "audio-delay" );
i_delay -= 50000; /* 50 ms */ i_delay -= 50000; /* 50 ms */
var_SetTime( p_input, "audio-delay", i_delay ); var_SetTime( p_input, "audio-delay", i_delay );
ClearChannels( p_intf, p_vout ); ClearChannels( p_intf, p_vout );
vout_OSDMessage( p_intf, DEFAULT_CHAN, "Audio delay %i ms", vout_OSDMessage( p_intf, DEFAULT_CHAN, "Audio delay %i ms",
...@@ -780,9 +678,7 @@ static void Run( intf_thread_t *p_intf ) ...@@ -780,9 +678,7 @@ static void Run( intf_thread_t *p_intf )
else if( i_action == ACTIONID_AUDIODELAY_UP ) else if( i_action == ACTIONID_AUDIODELAY_UP )
{ {
int64_t i_delay = var_GetTime( p_input, "audio-delay" ); int64_t i_delay = var_GetTime( p_input, "audio-delay" );
i_delay += 50000; /* 50 ms */ i_delay += 50000; /* 50 ms */
var_SetTime( p_input, "audio-delay", i_delay ); var_SetTime( p_input, "audio-delay", i_delay );
ClearChannels( p_intf, p_vout ); ClearChannels( p_intf, p_vout );
vout_OSDMessage( p_intf, DEFAULT_CHAN, "Audio delay %i ms", vout_OSDMessage( p_intf, DEFAULT_CHAN, "Audio delay %i ms",
...@@ -790,30 +686,23 @@ static void Run( intf_thread_t *p_intf ) ...@@ -790,30 +686,23 @@ static void Run( intf_thread_t *p_intf )
} }
else if( i_action == ACTIONID_PLAY ) else if( i_action == ACTIONID_PLAY )
{ {
p_playlist = vlc_object_find( p_intf, VLC_OBJECT_PLAYLIST, var_Get( p_input, "rate", &val );
FIND_ANYWHERE ); if( val.i_int != INPUT_RATE_DEFAULT )
if( p_playlist )
{ {
var_Get( p_input, "rate", &val ); /* Return to normal speed */
msg_Dbg( p_input, "rate %d", val.i_int ); var_SetInteger( p_input, "rate", INPUT_RATE_DEFAULT );
if( val.i_int != INPUT_RATE_DEFAULT ) }
{ else
/* Return to normal speed */ {
val.i_int = INPUT_RATE_DEFAULT; ClearChannels( p_intf, p_vout );
var_Set( p_input, "rate", val ); vout_OSDIcon( VLC_OBJECT( p_intf ), DEFAULT_CHAN,
} OSD_PLAY_ICON );
else playlist_Play( p_playlist );
{
ClearChannels( p_intf, p_vout );
vout_OSDIcon( VLC_OBJECT( p_intf ), DEFAULT_CHAN,
OSD_PLAY_ICON );
playlist_Play( p_playlist );
}
vlc_object_release( p_playlist );
} }
} }
} }
} }
pl_Release( p_intf );
} }
static int GetKey( intf_thread_t *p_intf) static int GetKey( intf_thread_t *p_intf)
...@@ -894,50 +783,42 @@ static void PlayBookmark( intf_thread_t *p_intf, int i_num ) ...@@ -894,50 +783,42 @@ static void PlayBookmark( intf_thread_t *p_intf, int i_num )
vlc_value_t val; vlc_value_t val;
int i; int i;
char psz_bookmark_name[11]; char psz_bookmark_name[11];
playlist_t *p_playlist = playlist_t *p_playlist = pl_Yield( p_intf );
vlc_object_find( p_intf, VLC_OBJECT_PLAYLIST, FIND_ANYWHERE );
sprintf( psz_bookmark_name, "bookmark%i", i_num ); sprintf( psz_bookmark_name, "bookmark%i", i_num );
var_Create( p_intf, psz_bookmark_name, VLC_VAR_STRING|VLC_VAR_DOINHERIT ); var_Create( p_intf, psz_bookmark_name, VLC_VAR_STRING|VLC_VAR_DOINHERIT );
var_Get( p_intf, psz_bookmark_name, &val ); var_Get( p_intf, psz_bookmark_name, &val );
if( p_playlist ) char *psz_bookmark = strdup( val.psz_string );
for( i = 0; i < p_playlist->i_size; i++)
{ {
char *psz_bookmark = strdup( val.psz_string ); if( !strcmp( psz_bookmark,
for( i = 0; i < p_playlist->i_size; i++) p_playlist->pp_items[i]->p_input->psz_uri ) )
{ {
if( !strcmp( psz_bookmark, playlist_LockControl( p_playlist, PLAYLIST_VIEWPLAY, NULL,
p_playlist->pp_items[i]->p_input->psz_uri ) ) p_playlist->pp_items[i] );
{ break;
playlist_LockControl( p_playlist, PLAYLIST_VIEWPLAY, NULL,
p_playlist->pp_items[i] );
break;
}
} }
vlc_object_release( p_playlist );
} }
vlc_object_release( p_playlist );
} }
static void SetBookmark( intf_thread_t *p_intf, int i_num ) static void SetBookmark( intf_thread_t *p_intf, int i_num )
{ {
playlist_t *p_playlist = playlist_t *p_playlist = pl_Yield( p_intf );
vlc_object_find( p_intf, VLC_OBJECT_PLAYLIST, FIND_ANYWHERE ); char psz_bookmark_name[11];
if( p_playlist ) sprintf( psz_bookmark_name, "bookmark%i", i_num );
var_Create( p_intf, psz_bookmark_name,
VLC_VAR_STRING|VLC_VAR_DOINHERIT );
if( p_playlist->status.p_item )
{ {
char psz_bookmark_name[11]; config_PutPsz( p_intf, psz_bookmark_name,
sprintf( psz_bookmark_name, "bookmark%i", i_num ); p_playlist->status.p_item->p_input->psz_uri);
var_Create( p_intf, psz_bookmark_name, msg_Info( p_intf, "setting playlist bookmark %i to %s", i_num,
VLC_VAR_STRING|VLC_VAR_DOINHERIT ); p_playlist->status.p_item->p_input->psz_uri);
if( p_playlist->status.p_item ) config_SaveConfigFile( p_intf, "hotkeys" );
{
config_PutPsz( p_intf, psz_bookmark_name,
p_playlist->status.p_item->p_input->psz_uri);
msg_Info( p_intf, "setting playlist bookmark %i to %s", i_num,
p_playlist->status.p_item->p_input->psz_uri);
config_SaveConfigFile( p_intf, "hotkeys" );
}
vlc_object_release( p_playlist );
} }
pl_Release( p_intf );
} }
static void DisplayPosition( intf_thread_t *p_intf, vout_thread_t *p_vout, static void DisplayPosition( intf_thread_t *p_intf, vout_thread_t *p_vout,
...@@ -948,10 +829,8 @@ static void DisplayPosition( intf_thread_t *p_intf, vout_thread_t *p_vout, ...@@ -948,10 +829,8 @@ static void DisplayPosition( intf_thread_t *p_intf, vout_thread_t *p_vout,
vlc_value_t time, pos; vlc_value_t time, pos;
mtime_t i_seconds; mtime_t i_seconds;
if( p_vout == NULL ) if( p_vout == NULL ) return;
{
return;
}
ClearChannels( p_intf, p_vout ); ClearChannels( p_intf, p_vout );
var_Get( p_input, "time", &time ); var_Get( p_input, "time", &time );
......
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