Commit 12b18830 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Allow more than one use of the video widget

However, I suspect the Qt4 interface will break if there is more than
one video output _at_the_same_time_
parent c4c75ec7
...@@ -333,6 +333,8 @@ static void Init( intf_thread_t *p_intf ) ...@@ -333,6 +333,8 @@ static void Init( intf_thread_t *p_intf )
/* Initialize timers and the Dialog Provider */ /* Initialize timers and the Dialog Provider */
DialogsProvider::getInstance( p_intf ); DialogsProvider::getInstance( p_intf );
QPointer<MainInterface> *miP = NULL;
/* Create the normal interface in non-DP mode */ /* Create the normal interface in non-DP mode */
if( !p_intf->pf_show_dialog ) if( !p_intf->pf_show_dialog )
{ {
...@@ -341,7 +343,8 @@ static void Init( intf_thread_t *p_intf ) ...@@ -341,7 +343,8 @@ static void Init( intf_thread_t *p_intf )
p_mi->show(); */ p_mi->show(); */
p_intf->p_sys->b_isDialogProvider = false; p_intf->p_sys->b_isDialogProvider = false;
val.p_address = new QPointer<MainInterface> (p_intf->p_sys->p_mi); miP = new QPointer<MainInterface> (p_intf->p_sys->p_mi);
val.p_address = miP;
QMutexLocker locker (&windowLock); QMutexLocker locker (&windowLock);
var_Set (p_intf, "window_widget", val); var_Set (p_intf, "window_widget", val);
windowWait.wakeAll (); windowWait.wakeAll ();
...@@ -403,13 +406,13 @@ static void Init( intf_thread_t *p_intf ) ...@@ -403,13 +406,13 @@ static void Init( intf_thread_t *p_intf )
/* And quit */ /* And quit */
windowLock.lock (); if (miP)
var_Get (p_intf, "window_widget", &val); {
if (val.p_address) QMutexLocker locker (&windowLock);
delete (QPointer<MainInterface> *)val.p_address; val.p_address = NULL;
val.p_address = NULL; var_Set (p_intf, "window_widget", val);
var_Set (p_intf, "window_widget", val); delete miP;
windowLock.unlock(); }
/* Destroy first the main interface because it is connected to some slots /* Destroy first the main interface because it is connected to some slots
in the MainInputManager */ in the MainInputManager */
...@@ -486,9 +489,7 @@ static int OpenWindow (vlc_object_t *obj) ...@@ -486,9 +489,7 @@ static int OpenWindow (vlc_object_t *obj)
msg_Dbg (obj, "requesting window..."); msg_Dbg (obj, "requesting window...");
QPointer<MainInterface> *miP = (QPointer<MainInterface> *)ptrval.p_address; QPointer<MainInterface> *miP = (QPointer<MainInterface> *)ptrval.p_address;
ptrval.p_address = NULL; miP = new QPointer<MainInterface> (*miP); /* create our own copy */
/* take ownership */
var_Set (intf, "window_widget", ptrval);
vlc_object_release (intf); vlc_object_release (intf);
if (miP->isNull ()) if (miP->isNull ())
......
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