diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-04-14 15:11:43 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-04-19 14:34:10 +0200 |
commit | f3c197b129482954e863aa6cc0fe9fd0713a9321 (patch) | |
tree | 6d3a7c71f9ba5279c93b3e199f072d0c535ea637 /libavcodec/mips/vc1dsp_mmi.c | |
parent | 84ac1440b2a726b8a989dafdf634081651de1c10 (diff) | |
download | ffmpeg-f3c197b129482954e863aa6cc0fe9fd0713a9321.tar.gz |
Include attributes.h directly
Some files currently rely on libavutil/cpu.h to include it for them;
yet said file won't use include it any more after the currently
deprecated functions are removed, so include attributes.h directly.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec/mips/vc1dsp_mmi.c')
-rw-r--r-- | libavcodec/mips/vc1dsp_mmi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/mips/vc1dsp_mmi.c b/libavcodec/mips/vc1dsp_mmi.c index 8355cd1b26..348ecd206f 100644 --- a/libavcodec/mips/vc1dsp_mmi.c +++ b/libavcodec/mips/vc1dsp_mmi.c @@ -20,6 +20,7 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ +#include "libavutil/attributes.h" #include "libavutil/avassert.h" #include "libavutil/mem_internal.h" @@ -27,7 +28,6 @@ #include "constants.h" #include "vc1dsp_mips.h" #include "hpeldsp_mips.h" -#include "libavutil/mem_internal.h" #include "libavutil/mips/mmiutils.h" #define VC1_INV_TRANCS_8_TYPE1(o1, o2, r1, r2, r3, r4, c0) \ |