diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-06-12 22:10:11 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-07-22 12:59:07 +0200 |
commit | 69f120ead7fbec9a469a5c0950b2a44fbc89f7a0 (patch) | |
tree | 47263a143252a08c807a0a5f62936cb93e496f7c /libpostproc | |
parent | cea34b91727370cb0c1eb76258518a9fc78f91fd (diff) | |
download | ffmpeg-69f120ead7fbec9a469a5c0950b2a44fbc89f7a0.tar.gz |
avcodec/avcodec: Don't include cpu.h
It is not used here at all; instead, add it where it is used without
including it or any of the arch-specific CPU headers.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libpostproc')
-rw-r--r-- | libpostproc/postprocess.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libpostproc/postprocess.c b/libpostproc/postprocess.c index 8d44165dee..2ca7a3779d 100644 --- a/libpostproc/postprocess.c +++ b/libpostproc/postprocess.c @@ -76,6 +76,7 @@ try to unroll inner for(x=0 ... loop to avoid these damn if(x ... checks #include "config.h" #include "libavutil/avutil.h" #include "libavutil/avassert.h" +#include "libavutil/cpu.h" #include "libavutil/intreadwrite.h" #include <inttypes.h> #include <stdio.h> |