[vlc-devel] [PATCH 07/17] video_output: remove always true boolean from ThreadChangeFilters
Steve Lhomme
robux4 at ycbcr.xyz
Mon Sep 14 16:03:18 CEST 2020
We always call this function under filter lock.
---
src/video_output/video_output.c | 15 ++++-----------
1 file changed, 4 insertions(+), 11 deletions(-)
diff --git a/src/video_output/video_output.c b/src/video_output/video_output.c
index a0852dcd7dd..2dad7c1c93b 100644
--- a/src/video_output/video_output.c
+++ b/src/video_output/video_output.c
@@ -960,11 +960,10 @@ typedef struct {
static void ThreadChangeFilters(vout_thread_sys_t *vout,
const char *filters,
- const bool *new_deinterlace,
- bool is_locked)
+ const bool *new_deinterlace)
{
vout_thread_sys_t *sys = vout;
- ThreadFilterFlush(vout, is_locked);
+ ThreadFilterFlush(vout, true);
ThreadDelAllFilterCallbacks(vout);
vlc_array_t array_static;
@@ -1019,9 +1018,6 @@ static void ThreadChangeFilters(vout_thread_sys_t *vout,
current = next;
}
- if (!is_locked)
- vlc_mutex_lock(&sys->filter.lock);
-
es_format_t fmt_target;
es_format_InitFromVideo(&fmt_target, &sys->filter.src_fmt);
vlc_video_context *vctx_target = sys->filter.src_vctx;
@@ -1079,9 +1075,6 @@ static void ThreadChangeFilters(vout_thread_sys_t *vout,
}
sys->filter.changed = false;
-
- if (!is_locked)
- vlc_mutex_unlock(&sys->filter.lock);
}
@@ -1149,7 +1142,7 @@ static int ThreadDisplayPreparePicture(vout_thread_sys_t *vout, bool reuse,
vlc_video_context_Release(sys->filter.src_vctx);
sys->filter.src_vctx = pic_vctx ? vlc_video_context_Hold(pic_vctx) : NULL;
- ThreadChangeFilters(vout, NULL, NULL, true);
+ ThreadChangeFilters(vout, NULL, NULL);
}
}
}
@@ -1499,7 +1492,7 @@ static int ThreadDisplayPicture(vout_thread_sys_t *vout, vlc_tick_t *deadline)
if (sys->filter.changed ||
sys->private.interlacing.has_deint != sys->filter.new_interlaced)
{
- ThreadChangeFilters(vout, sys->filter.new_filters, &sys->filter.new_interlaced, true);
+ ThreadChangeFilters(vout, sys->filter.new_filters, &sys->filter.new_interlaced);
}
vlc_mutex_unlock(&sys->filter.lock);
--
2.26.2
More information about the vlc-devel
mailing list