diff options
author | Hendrik Leppkes | 2015-12-02 09:52:02 +0100 |
---|---|---|
committer | Hendrik Leppkes | 2015-12-04 14:49:38 +0100 |
commit | 42a9aead854f3c89c072bb10225857da1239cb91 (patch) | |
tree | e92d827fa0e421bcbf46544b2a5e8419adc75b93 | |
parent | d6b988b505d6c5f69fc5df921643622795685cce (diff) |
avcodec: include tablegen compat header before the tablegen functionality
-rw-r--r-- | libavcodec/cbrt_tablegen_template.c | 2 | ||||
-rw-r--r-- | libavcodec/mpegaudio_tablegen.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/cbrt_tablegen_template.c b/libavcodec/cbrt_tablegen_template.c index 1d71d342ec..7dcab911a7 100644 --- a/libavcodec/cbrt_tablegen_template.c +++ b/libavcodec/cbrt_tablegen_template.c @@ -22,8 +22,8 @@ #include <stdlib.h> #define CONFIG_HARDCODED_TABLES 0 -#include "cbrt_tablegen.h" #include "libavutil/tablegen.h" +#include "cbrt_tablegen.h" #include "tableprint.h" int main(void) diff --git a/libavcodec/mpegaudio_tablegen.c b/libavcodec/mpegaudio_tablegen.c index 9a9bb4d056..ede7c8e221 100644 --- a/libavcodec/mpegaudio_tablegen.c +++ b/libavcodec/mpegaudio_tablegen.c @@ -22,8 +22,8 @@ #include <stdlib.h> #define CONFIG_HARDCODED_TABLES 0 -#include "mpegaudio_tablegen.h" #include "libavutil/tablegen.h" +#include "mpegaudio_tablegen.h" #include "tableprint.h" int main(void) |