[vlc-devel] [PATCH 1/4] video_output: move the window lock outside of the window enabling function
Steve Lhomme
robux4 at ycbcr.xyz
Mon Jan 13 13:38:47 CET 2020
ok
Alos move the vout usage *after* the assert on vout.
On 2020-01-13 13:17, Alexandre Janniaux wrote:
> Hi,
>
> Nit, but maybe the EnableWindowLocked would then benefit
> from a vlc_mutex_assert?
>
> Regards,
> --
> Alexandre Janniaux
> Videolabs
>
> On Mon, Jan 13, 2020 at 12:07:31PM +0100, Steve Lhomme wrote:
>> ---
>> src/video_output/video_output.c | 15 +++++++++------
>> 1 file changed, 9 insertions(+), 6 deletions(-)
>>
>> diff --git a/src/video_output/video_output.c b/src/video_output/video_output.c
>> index 659ede546ba..53c6416a620 100644
>> --- a/src/video_output/video_output.c
>> +++ b/src/video_output/video_output.c
>> @@ -1998,7 +1998,7 @@ int vout_ChangeSource( vout_thread_t *vout, const video_format_t *original )
>> return -1;
>> }
>>
>> -static int vout_EnableWindow(vout_thread_t *vout, const video_format_t *original,
>> +static int EnableWindowLocked(vout_thread_t *vout, const video_format_t *original,
>> vlc_decoder_device **pp_dec_device)
>> {
>> vout_thread_sys_t *sys = vout->p;
>> @@ -2006,7 +2006,6 @@ static int vout_EnableWindow(vout_thread_t *vout, const video_format_t *original
>> assert(!sys->dummy);
>> assert(vout != NULL);
>>
>> - vlc_mutex_lock(&sys->window_lock);
>> if (!sys->window_enabled) {
>> vout_window_cfg_t wcfg = {
>> .is_fullscreen = var_GetBool(vout, "fullscreen"),
>> @@ -2022,7 +2021,6 @@ static int vout_EnableWindow(vout_thread_t *vout, const video_format_t *original
>> vout_SizeWindow(vout, original, &wcfg.width, &wcfg.height);
>>
>> if (vout_window_Enable(sys->display_cfg.window, &wcfg)) {
>> - vlc_mutex_unlock(&sys->window_lock);
>> msg_Err(vout, "failed to enable window");
>> return -1;
>> }
>> @@ -2036,7 +2034,6 @@ static int vout_EnableWindow(vout_thread_t *vout, const video_format_t *original
>> sys->dec_device = vlc_decoder_device_Create(&vout->obj, sys->display_cfg.window);
>> *pp_dec_device = sys->dec_device ? vlc_decoder_device_Hold( sys->dec_device ) : NULL;
>> }
>> - vlc_mutex_unlock(&sys->window_lock);
>> return 0;
>> }
>>
>> @@ -2061,13 +2058,16 @@ int vout_Request(const vout_configuration_t *cfg, vlc_video_context *vctx, input
>> return 0;
>> }
>>
>> - if (vout_EnableWindow(vout, &original, NULL) != 0)
>> + vlc_mutex_lock(&sys->window_lock);
>> + if (EnableWindowLocked(vout, &original, NULL) != 0)
>> {
>> /* the window was not enabled, nor the display started */
>> msg_Err(vout, "failed to enable window");
>> video_format_Clean(&original);
>> + vlc_mutex_unlock(&sys->window_lock);
>> return -1;
>> }
>> + vlc_mutex_unlock(&sys->window_lock);
>>
>> if (sys->display != NULL)
>> vout_StopDisplay(vout);
>> @@ -2105,6 +2105,7 @@ vlc_decoder_device *vout_GetDevice(const vout_device_configuration_t *cfg)
>> vlc_decoder_device *dec_device = NULL;
>>
>> assert(cfg->fmt != NULL);
>> + vout_thread_sys_t *sys = cfg->vout->p;
>>
>> if (!VoutCheckFormat(cfg->fmt))
>> return NULL;
>> @@ -2112,7 +2113,9 @@ vlc_decoder_device *vout_GetDevice(const vout_device_configuration_t *cfg)
>> video_format_t original;
>> VoutFixFormat(&original, cfg->fmt);
>>
>> - int res = vout_EnableWindow(cfg->vout, &original, &dec_device);
>> + vlc_mutex_lock(&sys->window_lock);
>> + int res = EnableWindowLocked(cfg->vout, &original, &dec_device);
>> + vlc_mutex_unlock(&sys->window_lock);
>> video_format_Clean(&original);
>> if (res != 0)
>> return NULL;
>> --
>> 2.17.1
>>
>> _______________________________________________
>> vlc-devel mailing list
>> To unsubscribe or modify your subscription options:
>> https://mailman.videolan.org/listinfo/vlc-devel
> _______________________________________________
> vlc-devel mailing list
> To unsubscribe or modify your subscription options:
> https://mailman.videolan.org/listinfo/vlc-devel
>
More information about the vlc-devel
mailing list