diff mbox series

[FFmpeg-devel] avcodec/vvc_thread: don't use an anonymous union

Message ID 20240106193829.3166-1-jamrial@gmail.com
State Accepted
Commit b95ccfcadabb5a95544d71c206f984a72d03d7f0
Headers show
Series [FFmpeg-devel] avcodec/vvc_thread: don't use an anonymous union | expand

Checks

Context Check Description
yinshiyou/make_loongarch64 success Make finished
yinshiyou/make_fate_loongarch64 success Make fate finished
andriy/make_x86 success Make finished
andriy/make_fate_x86 success Make fate finished

Commit Message

James Almer Jan. 6, 2024, 7:38 p.m. UTC
Should fix compilation with old GCC.

Signed-off-by: James Almer <jamrial@gmail.com>
---
 libavcodec/vvc/vvc_thread.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Comments

Nuo Mi Jan. 7, 2024, 1:13 a.m. UTC | #1
On Sun, Jan 7, 2024 at 3:38 AM James Almer <jamrial@gmail.com> wrote:

> Should fix compilation with old GCC.
>
> Signed-off-by: James Almer <jamrial@gmail.com>
>
LGTM

> ---
>  libavcodec/vvc/vvc_thread.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/libavcodec/vvc/vvc_thread.c b/libavcodec/vvc/vvc_thread.c
> index db901585a4..31c931f050 100644
> --- a/libavcodec/vvc/vvc_thread.c
> +++ b/libavcodec/vvc/vvc_thread.c
> @@ -54,7 +54,7 @@ typedef struct VVCTask {
>      union {
>          struct VVCTask *next;                //for executor debug only
>          AVTask task;
> -    };
> +    } u;
>
>      VVCTaskStage stage;
>
> @@ -107,7 +107,7 @@ static void add_task(VVCContext *s, VVCTask *t)
>
>      atomic_fetch_add(&ft->nb_scheduled_tasks, 1);
>
> -    av_executor_execute(s->executor, &t->task);
> +    av_executor_execute(s->executor, &t->u.task);
>  }
>
>  static void task_init(VVCTask *t, VVCTaskStage stage, VVCFrameContext
> *fc, const int rx, const int ry)
> --
> 2.43.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".
>
diff mbox series

Patch

diff --git a/libavcodec/vvc/vvc_thread.c b/libavcodec/vvc/vvc_thread.c
index db901585a4..31c931f050 100644
--- a/libavcodec/vvc/vvc_thread.c
+++ b/libavcodec/vvc/vvc_thread.c
@@ -54,7 +54,7 @@  typedef struct VVCTask {
     union {
         struct VVCTask *next;                //for executor debug only
         AVTask task;
-    };
+    } u;
 
     VVCTaskStage stage;
 
@@ -107,7 +107,7 @@  static void add_task(VVCContext *s, VVCTask *t)
 
     atomic_fetch_add(&ft->nb_scheduled_tasks, 1);
 
-    av_executor_execute(s->executor, &t->task);
+    av_executor_execute(s->executor, &t->u.task);
 }
 
 static void task_init(VVCTask *t, VVCTaskStage stage, VVCFrameContext *fc, const int rx, const int ry)