diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-08-22 16:41:09 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-08-24 03:43:52 +0200 |
commit | 0bb0c2679943098c5d39ce235c804c2694ad6bc6 (patch) | |
tree | 7f9788b392ca9e3d6c72519fa64dea86e3f5abeb /libavcodec/x86 | |
parent | d09dacc197f99f2ea0b7b9285a5d63d2fd71e1c7 (diff) | |
download | ffmpeg-0bb0c2679943098c5d39ce235c804c2694ad6bc6.tar.gz |
avutil/mem_internal: Fix headers
Including avassert.h is unnecessary since commit
786be70e28fe739b8e49893fa13ae4652a68d1ea.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec/x86')
-rw-r--r-- | libavcodec/x86/h264_qpel.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/x86/h264_qpel.c b/libavcodec/x86/h264_qpel.c index b9b1edcd9e..2df4c11f82 100644 --- a/libavcodec/x86/h264_qpel.c +++ b/libavcodec/x86/h264_qpel.c @@ -20,6 +20,7 @@ */ #include "libavutil/attributes.h" +#include "libavutil/avassert.h" #include "libavutil/cpu.h" #include "libavutil/mem_internal.h" #include "libavutil/x86/asm.h" |