Commit 9f410e42 authored by Laurent Aimar's avatar Laurent Aimar

Fixed picture clean up when closing vout.

parent 776b8264
...@@ -624,22 +624,6 @@ static int ThreadInit(vout_thread_t *vout) ...@@ -624,22 +624,6 @@ static int ThreadInit(vout_thread_t *vout)
return VLC_SUCCESS; return VLC_SUCCESS;
} }
/*****************************************************************************
* CleanThread: clean up after InitThread
*****************************************************************************
* This function is called after a sucessful
* initialization. It frees all resources allocated by InitThread.
* XXX You have to enter it with change_lock taken.
*****************************************************************************/
static void ThreadClean(vout_thread_t *vout)
{
/* Destroy translation tables */
if (!vout->p->b_error) {
picture_fifo_Flush(vout->p->decoder_fifo, INT64_MAX, false);
vout_EndWrapper(vout);
}
}
static int ThreadDisplayPicture(vout_thread_t *vout, static int ThreadDisplayPicture(vout_thread_t *vout,
bool now, mtime_t *deadline) bool now, mtime_t *deadline)
{ {
...@@ -1004,6 +988,15 @@ static void ThreadChangeZoom(vout_thread_t *vout, int num, int den) ...@@ -1004,6 +988,15 @@ static void ThreadChangeZoom(vout_thread_t *vout, int num, int den)
vout_SetDisplayZoom(vout->p->display.vd, num, den); vout_SetDisplayZoom(vout->p->display.vd, num, den);
} }
static void ThreadClean(vout_thread_t *vout)
{
/* Destroy translation tables */
if (!vout->p->b_error) {
ThreadFlush(vout, true, INT64_MAX);
vout_EndWrapper(vout);
}
}
/***************************************************************************** /*****************************************************************************
* Thread: video output thread * Thread: video output thread
***************************************************************************** *****************************************************************************
......
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