diff mbox series

[FFmpeg-devel,01/14] avcodec/ylc: Remove inclusion of huffyuvdsp.h

Message ID GV1P250MB073731CA0D62A48F301E43DA8F589@GV1P250MB0737.EURP250.PROD.OUTLOOK.COM
State Accepted
Commit d287651c34901dfdd4e7a466792c40e5426000d0
Headers show
Series [FFmpeg-devel,01/14] avcodec/ylc: Remove inclusion of huffyuvdsp.h | expand

Checks

Context Check Description
andriy/make_x86 success Make finished
andriy/make_fate_x86 success Make fate finished

Commit Message

Andreas Rheinhardt Oct. 2, 2022, 12:04 a.m. UTC
Also improve the other headers a bit.

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
---
 libavcodec/ylc.c | 6 +-----
 1 file changed, 1 insertion(+), 5 deletions(-)

Comments

Andreas Rheinhardt Oct. 7, 2022, 11:58 a.m. UTC | #1
Andreas Rheinhardt:
> Also improve the other headers a bit.
> 
> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
> ---
>  libavcodec/ylc.c | 6 +-----
>  1 file changed, 1 insertion(+), 5 deletions(-)
> 
> diff --git a/libavcodec/ylc.c b/libavcodec/ylc.c
> index 3ea6749ffe..29c10f05da 100644
> --- a/libavcodec/ylc.c
> +++ b/libavcodec/ylc.c
> @@ -18,21 +18,17 @@
>   * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
>   */
>  
> -#include <stdio.h>
> -#include <stdlib.h>
>  #include <string.h>
>  
>  #define YLC_VLC_BITS 10
>  
> -#include "libavutil/imgutils.h"
> -#include "libavutil/internal.h"
>  #include "libavutil/intreadwrite.h"
>  #include "libavutil/mem.h"
> +#include "libavutil/pixfmt.h"
>  #include "avcodec.h"
>  #include "bswapdsp.h"
>  #include "codec_internal.h"
>  #include "get_bits.h"
> -#include "huffyuvdsp.h"
>  #include "thread.h"
>  #include "unary.h"
>  

Will apply this patchset tomorrow unless there are objections.

- Andreas
diff mbox series

Patch

diff --git a/libavcodec/ylc.c b/libavcodec/ylc.c
index 3ea6749ffe..29c10f05da 100644
--- a/libavcodec/ylc.c
+++ b/libavcodec/ylc.c
@@ -18,21 +18,17 @@ 
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
-#include <stdio.h>
-#include <stdlib.h>
 #include <string.h>
 
 #define YLC_VLC_BITS 10
 
-#include "libavutil/imgutils.h"
-#include "libavutil/internal.h"
 #include "libavutil/intreadwrite.h"
 #include "libavutil/mem.h"
+#include "libavutil/pixfmt.h"
 #include "avcodec.h"
 #include "bswapdsp.h"
 #include "codec_internal.h"
 #include "get_bits.h"
-#include "huffyuvdsp.h"
 #include "thread.h"
 #include "unary.h"