diff options
author | James Almer <jamrial@gmail.com> | 2017-11-29 14:24:08 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2017-11-29 14:24:08 -0300 |
commit | a198c1386a4f90cd6ae06874d1cdc2e3c0891fb8 (patch) | |
tree | 0ca3376f1a1ba738d5b713087f5ee73481230a8b | |
parent | 0c162854c1fa2a1e43ce5588b67842675f45e3c7 (diff) | |
download | ffmpeg-a198c1386a4f90cd6ae06874d1cdc2e3c0891fb8.tar.gz |
avcodec/amfenc: move config.h include where it's needed
Signed-off-by: James Almer <jamrial@gmail.com>
-rw-r--r-- | libavcodec/amfenc.c | 2 | ||||
-rw-r--r-- | libavcodec/amfenc.h | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/amfenc.c b/libavcodec/amfenc.c index 49d64e6946..f8b68070ae 100644 --- a/libavcodec/amfenc.c +++ b/libavcodec/amfenc.c @@ -16,6 +16,8 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ +#include "config.h" + #include "libavutil/avassert.h" #include "libavutil/imgutils.h" #include "libavutil/hwcontext.h" diff --git a/libavcodec/amfenc.h b/libavcodec/amfenc.h index 8b59b506c5..84f0aad2fa 100644 --- a/libavcodec/amfenc.h +++ b/libavcodec/amfenc.h @@ -26,7 +26,6 @@ #include "libavutil/fifo.h" -#include "config.h" #include "avcodec.h" |