X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=modules%2Fgui%2Fqt4%2Finput_manager.cpp;h=2dc83e7fc057e506e5b73176a6dcf4834f3b45b5;hb=fa4bde0b26a6c7a2a617362ea0b17144686e39fe;hp=86e85470ee5166418466c19f4b9a9fcddcf53a8e;hpb=c5e715f78c8ff8c418eafb8bb1e8709b8d6dc5a7;p=vlc diff --git a/modules/gui/qt4/input_manager.cpp b/modules/gui/qt4/input_manager.cpp index 86e85470ee..2dc83e7fc0 100644 --- a/modules/gui/qt4/input_manager.cpp +++ b/modules/gui/qt4/input_manager.cpp @@ -31,6 +31,8 @@ #include +#include + static int ItemChanged( vlc_object_t *, const char *, vlc_value_t, vlc_value_t, void * ); static int PLItemChanged( vlc_object_t *, const char *, @@ -61,7 +63,7 @@ InputManager::InputManager( QObject *parent, intf_thread_t *_p_intf) : b_video = false; timeA = 0; timeB = 0; - + f_cache = -1.; /* impossible initial value, different from all */ } InputManager::~InputManager() @@ -127,6 +129,7 @@ void InputManager::delInput() emit teletextPossible( false ); emit AtoBchanged( false, false ); emit voutChanged( false ); + emit voutListChanged( NULL, 0 ); /* Reset all InfoPanels but stats */ emit artChanged( NULL ); @@ -134,25 +137,13 @@ void InputManager::delInput() emit metaChanged( NULL ); } -/* Add the callbacks on Input. Self explanatory */ -inline void InputManager::addCallbacks() -{ - var_AddCallback( p_input, "intf-event", InputEvent, this ); -} - -/* Delete the callbacks on Input. Self explanatory */ -inline void InputManager::delCallbacks() -{ - var_DelCallback( p_input, "intf-event", InputEvent, this ); -} - /* Convert the event from the callbacks in actions */ void InputManager::customEvent( QEvent *event ) { int i_type = event->type(); IMEvent *ple = static_cast(event); - if ( i_type != PositionUpdate_Type && + assert( !( i_type != PositionUpdate_Type && i_type != ItemChanged_Type && i_type != ItemRateChanged_Type && i_type != ItemTitleChanged_Type && @@ -165,14 +156,16 @@ void InputManager::customEvent( QEvent *event ) i_type != NameChanged_Type && i_type != InfoChanged_Type && i_type != SynchroChanged_Type && - i_type != CachingEvent_Type ) - return; + i_type != CachingEvent_Type && + i_type != BookmarksChanged_Type && + i_type != InterfaceAoutUpdate_Type && + i_type != RecordingEvent_Type ) ); + + if( !hasInput() ) return; if( i_type == CachingEvent_Type ) UpdateCaching(); - if( !hasInput() ) return; - if( ( i_type != PositionUpdate_Type && i_type != ItemRateChanged_Type && i_type != ItemEsChanged_Type && @@ -183,7 +176,10 @@ void InputManager::customEvent( QEvent *event ) i_type != MetaChanged_Type && i_type != NameChanged_Type && i_type != InfoChanged_Type && - i_type != SynchroChanged_Type + i_type != SynchroChanged_Type && + i_type != BookmarksChanged_Type && + i_type != InterfaceAoutUpdate_Type && + i_type != RecordingEvent_Type ) && ( i_input_id != ple->i_id ) ) return; @@ -206,7 +202,7 @@ void InputManager::customEvent( QEvent *event ) case ItemChanged_Type: UpdateStatus(); // UpdateName(); - // UpdateArt(); + UpdateArt(); break; case ItemStateChanged_Type: // TODO: Fusion with above state @@ -248,11 +244,128 @@ void InputManager::customEvent( QEvent *event ) case CachingEvent_Type: UpdateCaching(); break; + case BookmarksChanged_Type: + emit bookmarksChanged(); + break; + case InterfaceAoutUpdate_Type: + UpdateAout(); + break; + case RecordingEvent_Type: + UpdateRecord(); + break; default: msg_Warn( p_intf, "This shouldn't happen: %i", i_type ); } } +/* Add the callbacks on Input. Self explanatory */ +inline void InputManager::addCallbacks() +{ + var_AddCallback( p_input, "intf-event", InputEvent, this ); +} + +/* Delete the callbacks on Input. Self explanatory */ +inline void InputManager::delCallbacks() +{ + var_DelCallback( p_input, "intf-event", InputEvent, this ); +} + +/* Static callbacks for IM */ +static int ItemChanged( vlc_object_t *p_this, const char *psz_var, + vlc_value_t oldval, vlc_value_t newval, void *param ) +{ + InputManager *im = (InputManager*)param; + + IMEvent *event = new IMEvent( ItemChanged_Type, newval.i_int ); + QApplication::postEvent( im, event ); + return VLC_SUCCESS; +} + +static int InputEvent( vlc_object_t *p_this, const char *, + vlc_value_t, vlc_value_t newval, void *param ) +{ + InputManager *im = (InputManager*)param; + IMEvent *event; + + switch( newval.i_int ) + { + case INPUT_EVENT_STATE: + event = new IMEvent( ItemStateChanged_Type, 0 ); + break; + case INPUT_EVENT_RATE: + event = new IMEvent( ItemRateChanged_Type, 0 ); + break; + case INPUT_EVENT_TIMES: + event = new IMEvent( PositionUpdate_Type, 0 ); + break; + + case INPUT_EVENT_TITLE: + case INPUT_EVENT_CHAPTER: + event = new IMEvent( ItemTitleChanged_Type, 0 ); + break; + + case INPUT_EVENT_ES: + event = new IMEvent( ItemEsChanged_Type, 0 ); + break; + case INPUT_EVENT_TELETEXT: + event = new IMEvent( ItemTeletextChanged_Type, 0 ); + break; + + case INPUT_EVENT_STATISTICS: + event = new IMEvent( StatisticsUpdate_Type, 0 ); + break; + + case INPUT_EVENT_VOUT: + event = new IMEvent( InterfaceVoutUpdate_Type, 0 ); + break; + case INPUT_EVENT_AOUT: + event = new IMEvent( InterfaceAoutUpdate_Type, 0 ); + break; + + case INPUT_EVENT_ITEM_META: /* Codec MetaData + Art */ + event = new IMEvent( MetaChanged_Type, 0 ); + break; + case INPUT_EVENT_ITEM_INFO: /* Codec Info */ + event = new IMEvent( InfoChanged_Type, 0 ); + break; + case INPUT_EVENT_ITEM_NAME: + event = new IMEvent( NameChanged_Type, 0 ); + break; + + case INPUT_EVENT_AUDIO_DELAY: + case INPUT_EVENT_SUBTITLE_DELAY: + event = new IMEvent( SynchroChanged_Type, 0 ); + break; + + case INPUT_EVENT_CACHE: + event = new IMEvent( CachingEvent_Type, 0 ); + break; + + case INPUT_EVENT_BOOKMARK: + event = new IMEvent( BookmarksChanged_Type, 0 ); + break; + + case INPUT_EVENT_RECORD: + event = new IMEvent( RecordingEvent_Type, 0 ); + break; + + case INPUT_EVENT_PROGRAM: + /* This is for PID changes */ + /* event = new IMEvent( ProgramChanged_Type, 0 ); + break; */ + case INPUT_EVENT_SIGNAL: + /* This is for capture-card signals */ + /* event = new IMEvent( SignalChanged_Type, 0 ); + break; */ + default: + event = NULL; + break; + } + + if( event ) + QApplication::postEvent( im, event ); + return VLC_SUCCESS; +} void InputManager::UpdatePosition() { /* Update position */ @@ -275,10 +388,12 @@ void InputManager::UpdateNavigation() if( val.i_int > 0 ) { emit titleChanged( true ); + msg_Dbg( p_intf, "Title %i", val.i_int ); /* p_input != NULL since val.i_int != 0 */ val.i_int = 0; var_Change( p_input, "chapter", VLC_VAR_CHOICESCOUNT, &val, NULL ); emit chapterChanged( (val.i_int > 0) ); + msg_Dbg( p_intf, "Chapter: %i", val.i_int ); } else emit titleChanged( false ); @@ -382,33 +497,81 @@ void InputManager::UpdateVout() { if( hasInput() ) { - bool b_old_video = b_video; + /* Get current vout lists from input */ + int i_vout; + vout_thread_t **pp_vout; + if( input_Control( p_input, INPUT_GET_VOUTS, &pp_vout, &i_vout ) ) + { + i_vout = 0; + pp_vout = NULL; + } + + /* */ + emit voutListChanged( pp_vout, i_vout ); - vlc_object_t *p_vout = (vlc_object_t*)vlc_object_find( p_input, - VLC_OBJECT_VOUT, FIND_CHILD ); - b_video = p_vout != NULL; - if( p_vout ) - vlc_object_release( p_vout ); + /* */ + bool b_old_video = b_video; + b_video = i_vout > 0; if( !!b_old_video != !!b_video ) emit voutChanged( b_video ); + + /* Release the vout list */ + for( int i = 0; i < i_vout; i++ ) + vlc_object_release( (vlc_object_t*)pp_vout[i] ); + free( pp_vout ); + } +} +void InputManager::UpdateAout() +{ + if( hasInput() ) + { + /* TODO */ } } - void InputManager::UpdateCaching() { - float f_newCache = var_GetFloat( p_input, "cache" ); + if(!hasInput()) return; + + float f_newCache = var_GetFloat ( p_input, "cache" ); if( f_newCache != f_cache ) { - f_newCache = f_cache; + f_cache = f_newCache; /* Update rate */ emit cachingChanged( f_cache ); } } -inline void InputManager::UpdateArt() +void InputManager::requestArtUpdate() { + if( hasInput() ) + { + playlist_t *p_playlist = pl_Hold( p_intf ); + playlist_AskForArtEnqueue( p_playlist, input_GetItem( p_input ), pl_Unlocked ); + pl_Release( p_intf ); + } + else + { + /* No input will signal the cover art to update, + * let's do it ourself */ + UpdateArt(); + } +} + +void InputManager::UpdateArt() +{ + QString url; + + if( hasInput() ) + { + char *psz_art = input_item_GetArtURL( input_GetItem( p_input ) ); + url = psz_art; + free( psz_art ); + } + url = url.replace( "file://", QString("" ) ); + /* Taglib seems to define a attachment://, It won't work yet */ + url = url.replace( "attachment://", QString("" ) ); /* Update Art meta */ - emit artChanged( input_GetItem( p_input ) ); + emit artChanged( url ); } inline void InputManager::UpdateStats() @@ -426,6 +589,14 @@ inline void InputManager::UpdateInfo() emit infoChanged( input_GetItem( p_input ) ); } +void InputManager::UpdateRecord() +{ + if( hasInput() ) + { + emit recordingStateChanged( var_GetBool( p_input, "record" ) ); + } +} + /* User update of the slider */ void InputManager::sliderUpdate( float new_pos ) { @@ -668,17 +839,19 @@ MainInputManager::MainInputManager( intf_thread_t *_p_intf ) /* emit check if playlist has allready started playing */ vlc_value_t val; var_Change( THEPL, "playlist-current", VLC_VAR_CHOICESCOUNT, &val, NULL ); + IMEvent *event = new IMEvent( ItemChanged_Type, val.i_int); - QApplication::postEvent( this, static_cast(event) ); + customEvent( event ); + delete event; } MainInputManager::~MainInputManager() { if( p_input ) { + emit inputChanged( NULL ); var_DelCallback( p_input, "state", PLItemChanged, this ); vlc_object_release( p_input ); - emit inputChanged( NULL ); } var_DelCallback( p_intf->p_libvlc, "volume-change", VolumeChanged, this ); @@ -689,6 +862,16 @@ MainInputManager::~MainInputManager() var_DelCallback( THEPL, "playlist-current", PLItemChanged, this ); } +vout_thread_t* MainInputManager::getVout() +{ + return p_input ? input_GetVout( p_input ) : NULL; +} + +aout_instance_t * MainInputManager::getAout() +{ + return p_input ? input_GetAout( p_input ) : NULL; +} + void MainInputManager::customEvent( QEvent *event ) { int type = event->type(); @@ -708,9 +891,9 @@ void MainInputManager::customEvent( QEvent *event ) vlc_mutex_lock( &p_intf->change_lock ); if( p_input && ( p_input->b_dead || !vlc_object_alive (p_input) ) ) { + emit inputChanged( NULL ); var_DelCallback( p_input, "state", PLItemChanged, this ); vlc_object_release( p_input ); - emit inputChanged( NULL ); p_input = NULL; vlc_mutex_unlock( &p_intf->change_lock ); return; @@ -766,98 +949,14 @@ void MainInputManager::togglePlayPause() getIM()->togglePlayPause(); } -/* Static callbacks */ - -/* IM */ -static int ItemChanged( vlc_object_t *p_this, const char *psz_var, - vlc_value_t oldval, vlc_value_t newval, void *param ) -{ - InputManager *im = (InputManager*)param; - - IMEvent *event = new IMEvent( ItemChanged_Type, newval.i_int ); - QApplication::postEvent( im, static_cast(event) ); - return VLC_SUCCESS; -} - -static int InputEvent( vlc_object_t *p_this, const char *, - vlc_value_t, vlc_value_t newval, void *param ) -{ - InputManager *im = (InputManager*)param; - IMEvent *event; - - switch( newval.i_int ) - { - case INPUT_EVENT_STATE: - event = new IMEvent( ItemStateChanged_Type, 0 ); - break; - case INPUT_EVENT_RATE: - event = new IMEvent( ItemRateChanged_Type, 0 ); - break; - case INPUT_EVENT_TIMES: - event = new IMEvent( PositionUpdate_Type, 0 ); - break; - - case INPUT_EVENT_TITLE: - case INPUT_EVENT_CHAPTER: - event = new IMEvent( ItemTitleChanged_Type, 0 ); - break; - - case INPUT_EVENT_ES: - event = new IMEvent( ItemEsChanged_Type, 0 ); - break; - case INPUT_EVENT_TELETEXT: - event = new IMEvent( ItemTeletextChanged_Type, 0 ); - break; - - case INPUT_EVENT_VOUT: - event = new IMEvent( InterfaceVoutUpdate_Type, 0 ); - break; - - case INPUT_EVENT_STATISTICS: - event = new IMEvent( StatisticsUpdate_Type, 0 ); - break; - - case INPUT_EVENT_ITEM_META: /* Codec MetaData + Art */ - event = new IMEvent( MetaChanged_Type, 0 ); - break; - case INPUT_EVENT_ITEM_INFO: /* Codec Info */ - event = new IMEvent( InfoChanged_Type, 0 ); - break; - case INPUT_EVENT_ITEM_NAME: - event = new IMEvent( NameChanged_Type, 0 ); - break; - - case INPUT_EVENT_AUDIO_DELAY: - case INPUT_EVENT_SUBTITLE_DELAY: - event = new IMEvent( SynchroChanged_Type, 0 ); - break; - - case INPUT_EVENT_CACHE: - event = new IMEvent( CachingEvent_Type, 0 ); - break; - - case INPUT_EVENT_PROGRAM: - case INPUT_EVENT_RECORD: - case INPUT_EVENT_SIGNAL: - case INPUT_EVENT_BOOKMARK: - default: - event = NULL; - break; - } - - if( event ) - QApplication::postEvent( im, static_cast(event) ); - return VLC_SUCCESS; -} - -/* MIM */ +/* Static callbacks for MIM */ static int PLItemChanged( vlc_object_t *p_this, const char *psz_var, vlc_value_t oldval, vlc_value_t newval, void *param ) { MainInputManager *mim = (MainInputManager*)param; IMEvent *event = new IMEvent( ItemChanged_Type, newval.i_int ); - QApplication::postEvent( mim, static_cast(event) ); + QApplication::postEvent( mim, event ); return VLC_SUCCESS; } @@ -867,8 +966,7 @@ static int VolumeChanged( vlc_object_t *p_this, const char *psz_var, MainInputManager *mim = (MainInputManager*)param; IMEvent *event = new IMEvent( VolumeChanged_Type, newval.i_int ); - QApplication::postEvent( mim, static_cast(event) ); + QApplication::postEvent( mim, event ); return VLC_SUCCESS; } -