diff mbox

[FFmpeg-devel] avfilter/af_anlmdn: Remove threading flag

Message ID 20191025041609.2574-1-andriy.gelman@gmail.com
State Withdrawn
Headers show

Commit Message

Andriy Gelman Oct. 25, 2019, 4:16 a.m. UTC
From: Andriy Gelman <andriy.gelman@gmail.com>

Unset flag because there is no threading in filter.
---
 libavfilter/af_anlmdn.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

Comments

Paul B Mahol Oct. 25, 2019, 7:47 a.m. UTC | #1
Not OK, there is threading in filter. See execute call.

On 10/25/19, Andriy Gelman <andriy.gelman@gmail.com> wrote:
> From: Andriy Gelman <andriy.gelman@gmail.com>
>
> Unset flag because there is no threading in filter.
> ---
>  libavfilter/af_anlmdn.c | 3 +--
>  1 file changed, 1 insertion(+), 2 deletions(-)
>
> diff --git a/libavfilter/af_anlmdn.c b/libavfilter/af_anlmdn.c
> index 6e37452963..c25454e6f8 100644
> --- a/libavfilter/af_anlmdn.c
> +++ b/libavfilter/af_anlmdn.c
> @@ -369,6 +369,5 @@ AVFilter ff_af_anlmdn = {
>      .inputs        = inputs,
>      .outputs       = outputs,
>      .process_command = ff_filter_process_command,
> -    .flags         = AVFILTER_FLAG_SUPPORT_TIMELINE_INTERNAL |
> -                     AVFILTER_FLAG_SLICE_THREADS,
> +    .flags         = AVFILTER_FLAG_SUPPORT_TIMELINE_INTERNAL
>  };
> --
> 2.23.0
>
> _______________________________________________
> ffmpeg-devel mailing list
> ffmpeg-devel@ffmpeg.org
> https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
>
> To unsubscribe, visit link above, or email
> ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".
Andriy Gelman Oct. 25, 2019, 1:43 p.m. UTC | #2
On Fri, 25. Oct 09:47, Paul B Mahol wrote:
> Not OK, there is threading in filter. See execute call.

sorry, missed this one.
diff mbox

Patch

diff --git a/libavfilter/af_anlmdn.c b/libavfilter/af_anlmdn.c
index 6e37452963..c25454e6f8 100644
--- a/libavfilter/af_anlmdn.c
+++ b/libavfilter/af_anlmdn.c
@@ -369,6 +369,5 @@  AVFilter ff_af_anlmdn = {
     .inputs        = inputs,
     .outputs       = outputs,
     .process_command = ff_filter_process_command,
-    .flags         = AVFILTER_FLAG_SUPPORT_TIMELINE_INTERNAL |
-                     AVFILTER_FLAG_SLICE_THREADS,
+    .flags         = AVFILTER_FLAG_SUPPORT_TIMELINE_INTERNAL
 };