Commit 7876f294 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

qt4: remove unused x, y parameters for video widget request

parent 72462021
...@@ -100,12 +100,9 @@ void VideoWidget::sync( void ) ...@@ -100,12 +100,9 @@ void VideoWidget::sync( void )
/** /**
* Request the video to avoid the conflicts * Request the video to avoid the conflicts
**/ **/
WId VideoWidget::request( int *pi_x, int *pi_y, WId VideoWidget::request( unsigned int *pi_width, unsigned int *pi_height,
unsigned int *pi_width, unsigned int *pi_height,
bool b_keep_size ) bool b_keep_size )
{ {
msg_Dbg( p_intf, "Video was requested %i, %i", *pi_x, *pi_y );
if( stable ) if( stable )
{ {
msg_Dbg( p_intf, "embedded video already in use" ); msg_Dbg( p_intf, "embedded video already in use" );
......
...@@ -59,7 +59,7 @@ public: ...@@ -59,7 +59,7 @@ public:
VideoWidget( intf_thread_t * ); VideoWidget( intf_thread_t * );
virtual ~VideoWidget(); virtual ~VideoWidget();
WId request( int *, int *, unsigned int *, unsigned int *, bool ); WId request( unsigned int *, unsigned int *, bool );
void release( void ); void release( void );
void sync( void ); void sync( void );
......
...@@ -203,8 +203,8 @@ MainInterface::MainInterface( intf_thread_t *_p_intf ) : QVLCMW( _p_intf ) ...@@ -203,8 +203,8 @@ MainInterface::MainInterface( intf_thread_t *_p_intf ) : QVLCMW( _p_intf )
/* VideoWidget connects for asynchronous calls */ /* VideoWidget connects for asynchronous calls */
b_videoFullScreen = false; b_videoFullScreen = false;
connect( this, SIGNAL(askGetVideo(WId*,int*,int*,unsigned*,unsigned *)), connect( this, SIGNAL(askGetVideo(WId*,unsigned*,unsigned *)),
this, SLOT(getVideoSlot(WId*,int*,int*,unsigned*,unsigned*)), this, SLOT(getVideoSlot(WId*,unsigned*,unsigned*)),
Qt::BlockingQueuedConnection ); Qt::BlockingQueuedConnection );
connect( this, SIGNAL(askReleaseVideo( void )), connect( this, SIGNAL(askReleaseVideo( void )),
this, SLOT(releaseVideoSlot( void )), this, SLOT(releaseVideoSlot( void )),
...@@ -681,8 +681,7 @@ void MainInterface::toggleFSC() ...@@ -681,8 +681,7 @@ void MainInterface::toggleFSC()
* All window provider queries must be handled through signals or events. * All window provider queries must be handled through signals or events.
* That's why we have all those emit statements... * That's why we have all those emit statements...
*/ */
WId MainInterface::getVideo( int *pi_x, int *pi_y, WId MainInterface::getVideo( unsigned int *pi_width, unsigned int *pi_height )
unsigned int *pi_width, unsigned int *pi_height )
{ {
if( !videoWidget ) if( !videoWidget )
return 0; return 0;
...@@ -690,11 +689,11 @@ WId MainInterface::getVideo( int *pi_x, int *pi_y, ...@@ -690,11 +689,11 @@ WId MainInterface::getVideo( int *pi_x, int *pi_y,
/* This is a blocking call signal. Results are returned through pointers. /* This is a blocking call signal. Results are returned through pointers.
* Beware of deadlocks! */ * Beware of deadlocks! */
WId id; WId id;
emit askGetVideo( &id, pi_x, pi_y, pi_width, pi_height ); emit askGetVideo( &id, pi_width, pi_height );
return id; return id;
} }
void MainInterface::getVideoSlot( WId *p_id, int *pi_x, int *pi_y, void MainInterface::getVideoSlot( WId *p_id,
unsigned *pi_width, unsigned *pi_height ) unsigned *pi_width, unsigned *pi_height )
{ {
/* Hidden or minimized, activate */ /* Hidden or minimized, activate */
...@@ -702,8 +701,7 @@ void MainInterface::getVideoSlot( WId *p_id, int *pi_x, int *pi_y, ...@@ -702,8 +701,7 @@ void MainInterface::getVideoSlot( WId *p_id, int *pi_x, int *pi_y,
toggleUpdateSystrayMenu(); toggleUpdateSystrayMenu();
/* Request the videoWidget */ /* Request the videoWidget */
WId ret = videoWidget->request( pi_x, pi_y, WId ret = videoWidget->request( pi_width, pi_height, !b_autoresize );
pi_width, pi_height, !b_autoresize );
*p_id = ret; *p_id = ret;
if( ret ) /* The videoWidget is available */ if( ret ) /* The videoWidget is available */
{ {
......
...@@ -70,8 +70,7 @@ public: ...@@ -70,8 +70,7 @@ public:
static const QEvent::Type ToolbarsNeedRebuild; static const QEvent::Type ToolbarsNeedRebuild;
/* Video requests from core */ /* Video requests from core */
WId getVideo( int *pi_x, int *pi_y, WId getVideo( unsigned int *pi_width, unsigned int *pi_height );
unsigned int *pi_width, unsigned int *pi_height );
void releaseVideo( void ); void releaseVideo( void );
int controlVideo( int i_query, va_list args ); int controlVideo( int i_query, va_list args );
...@@ -209,8 +208,7 @@ public slots: ...@@ -209,8 +208,7 @@ public slots:
#endif #endif
/* Manage the Video Functions from the vout threads */ /* Manage the Video Functions from the vout threads */
void getVideoSlot( WId *p_id, int *pi_x, int *pi_y, void getVideoSlot( WId *p_id, unsigned *pi_width, unsigned *pi_height );
unsigned *pi_width, unsigned *pi_height );
void releaseVideoSlot( void ); void releaseVideoSlot( void );
void emitBoss(); void emitBoss();
...@@ -261,8 +259,7 @@ private slots: ...@@ -261,8 +259,7 @@ private slots:
void continuePlayback(); void continuePlayback();
signals: signals:
void askGetVideo( WId *p_id, int *pi_x, int *pi_y, void askGetVideo( WId *p_id, unsigned *pi_width, unsigned *pi_height );
unsigned *pi_width, unsigned *pi_height );
void askReleaseVideo( ); void askReleaseVideo( );
void askVideoToResize( unsigned int, unsigned int ); void askVideoToResize( unsigned int, unsigned int );
void askVideoSetFullScreen( bool ); void askVideoSetFullScreen( bool );
......
...@@ -669,12 +669,10 @@ static int WindowOpen( vout_window_t *p_wnd, const vout_window_cfg_t *cfg ) ...@@ -669,12 +669,10 @@ static int WindowOpen( vout_window_t *p_wnd, const vout_window_cfg_t *cfg )
MainInterface *p_mi = p_intf->p_sys->p_mi; MainInterface *p_mi = p_intf->p_sys->p_mi;
msg_Dbg( p_wnd, "requesting video window..." ); msg_Dbg( p_wnd, "requesting video window..." );
int i_x = cfg->x;
int i_y = cfg->y;
unsigned i_width = cfg->width; unsigned i_width = cfg->width;
unsigned i_height = cfg->height; unsigned i_height = cfg->height;
WId wid = p_mi->getVideo( &i_x, &i_y, &i_width, &i_height ); WId wid = p_mi->getVideo( &i_width, &i_height );
if( !wid ) if( !wid )
return VLC_EGENERIC; return VLC_EGENERIC;
......
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