diff mbox series

[FFmpeg-devel] libavutil: Makefile: Fix alphabetical order for the film_grain_params files

Message ID 20240930111446.52403-1-martin@martin.st
State Accepted
Headers show
Series [FFmpeg-devel] libavutil: Makefile: Fix alphabetical order for the film_grain_params files | 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

Martin Storsjö Sept. 30, 2024, 11:14 a.m. UTC
---
 libavutil/Makefile | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Comments

Martin Storsjö Oct. 2, 2024, 8:26 a.m. UTC | #1
On Mon, 30 Sep 2024, Martin Storsjö wrote:

> ---
> libavutil/Makefile | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/libavutil/Makefile b/libavutil/Makefile
> index 6e6fa8d800..d3c95b12a0 100644
> --- a/libavutil/Makefile
> +++ b/libavutil/Makefile
> @@ -34,6 +34,7 @@ HEADERS = adler32.h                                                     \
>           executor.h                                                    \
>           fifo.h                                                        \
>           file.h                                                        \
> +          film_grain_params.h                                           \
>           frame.h                                                       \
>           hash.h                                                        \
>           hdr_dynamic_metadata.h                                        \
> @@ -93,7 +94,6 @@ HEADERS = adler32.h                                                     \
>           xtea.h                                                        \
>           tea.h                                                         \
>           tx.h                                                          \
> -          film_grain_params.h                                           \
>           video_hint.h
>
> ARCH_HEADERS = bswap.h                                                  \
> @@ -135,6 +135,7 @@ OBJS = adler32.o                                                        \
>        file.o                                                           \
>        file_open.o                                                      \
>        float_dsp.o                                                      \
> +       film_grain_params.o                                              \
>        fixed_dsp.o                                                      \
>        frame.o                                                          \
>        hash.o                                                           \
> @@ -189,7 +190,6 @@ OBJS = adler32.o                                                        \
>        version.o                                                        \
>        video_enc_params.o                                               \
>        video_hint.o                                                     \
> -       film_grain_params.o                                              \
>
>
> OBJS-$(CONFIG_CUDA)                     += hwcontext_cuda.o
> -- 
> 2.39.5 (Apple Git-154)

Pushed, together with a similar patch for libavcodec, for moving entries 
to the right section.

// Martin
diff mbox series

Patch

diff --git a/libavutil/Makefile b/libavutil/Makefile
index 6e6fa8d800..d3c95b12a0 100644
--- a/libavutil/Makefile
+++ b/libavutil/Makefile
@@ -34,6 +34,7 @@  HEADERS = adler32.h                                                     \
           executor.h                                                    \
           fifo.h                                                        \
           file.h                                                        \
+          film_grain_params.h                                           \
           frame.h                                                       \
           hash.h                                                        \
           hdr_dynamic_metadata.h                                        \
@@ -93,7 +94,6 @@  HEADERS = adler32.h                                                     \
           xtea.h                                                        \
           tea.h                                                         \
           tx.h                                                          \
-          film_grain_params.h                                           \
           video_hint.h
 
 ARCH_HEADERS = bswap.h                                                  \
@@ -135,6 +135,7 @@  OBJS = adler32.o                                                        \
        file.o                                                           \
        file_open.o                                                      \
        float_dsp.o                                                      \
+       film_grain_params.o                                              \
        fixed_dsp.o                                                      \
        frame.o                                                          \
        hash.o                                                           \
@@ -189,7 +190,6 @@  OBJS = adler32.o                                                        \
        version.o                                                        \
        video_enc_params.o                                               \
        video_hint.o                                                     \
-       film_grain_params.o                                              \
 
 
 OBJS-$(CONFIG_CUDA)                     += hwcontext_cuda.o