summaryrefslogtreecommitdiff
path: root/libavcodec/ylc.c
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-10-02 00:10:16 +0200
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-10-09 09:15:39 +0200
commitd287651c34901dfdd4e7a466792c40e5426000d0 (patch)
tree0baaa6cc39776840e0be7bae266c4eb03ed7e758 /libavcodec/ylc.c
parent5676b7cdcfec5f07c591891d2f1361464f652352 (diff)
downloadffmpeg-d287651c34901dfdd4e7a466792c40e5426000d0.tar.gz
avcodec/ylc: Remove inclusion of huffyuvdsp.h
Also improve the other headers a bit. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec/ylc.c')
-rw-r--r--libavcodec/ylc.c6
1 files changed, 1 insertions, 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"