diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2024-02-27 20:35:54 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2024-03-01 01:34:26 +0100 |
commit | 0c92c8e6e37cb75df616303c8f3cf6d321431a0e (patch) | |
tree | 67aa0e321d32a5bb288260e8844fafab27fcb5c5 | |
parent | ec0bd89297a19fa59684e51e94f3926584aa984d (diff) | |
download | ffmpeg-0c92c8e6e37cb75df616303c8f3cf6d321431a0e.tar.gz |
avcodec/libxevd: Improve included headers a bit
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
-rw-r--r-- | libavcodec/libxevd.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/libavcodec/libxevd.c b/libavcodec/libxevd.c index fd12a1f150..23ea22f792 100644 --- a/libavcodec/libxevd.c +++ b/libavcodec/libxevd.c @@ -21,22 +21,18 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -#include <float.h> -#include <stdlib.h> +#include <stddef.h> #include <xevd.h> #include "libavutil/internal.h" #include "libavutil/common.h" -#include "libavutil/opt.h" #include "libavutil/pixdesc.h" #include "libavutil/pixfmt.h" #include "libavutil/imgutils.h" #include "libavutil/cpu.h" #include "avcodec.h" -#include "internal.h" -#include "packet_internal.h" #include "codec_internal.h" #include "profiles.h" #include "decode.h" |