Re: [FFmpeg-devel] [PATCH 2/3] avcodec: include tablegen compat header before the tablegen functionality

2015-12-02 Thread Michael Niedermayer
On Wed, Dec 02, 2015 at 09:52:02AM +0100, Hendrik Leppkes wrote:
> ---
>  libavcodec/cbrt_tablegen_template.c | 2 +-
>  libavcodec/mpegaudio_tablegen.c | 2 +-
>  2 files changed, 2 insertions(+), 2 deletions(-)

should be ok (ugly though that the order matters)

[...]
-- 
Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB

The misfortune of the wise is better than the prosperity of the fool.
-- Epicurus


signature.asc
Description: Digital signature
___
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-devel


[FFmpeg-devel] [PATCH 2/3] avcodec: include tablegen compat header before the tablegen functionality

2015-12-02 Thread Hendrik Leppkes
---
 libavcodec/cbrt_tablegen_template.c | 2 +-
 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 1d71d34..7dcab91 100644
--- a/libavcodec/cbrt_tablegen_template.c
+++ b/libavcodec/cbrt_tablegen_template.c
@@ -22,8 +22,8 @@
 
 #include 
 #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 9a9bb4d..ede7c8e 100644
--- a/libavcodec/mpegaudio_tablegen.c
+++ b/libavcodec/mpegaudio_tablegen.c
@@ -22,8 +22,8 @@
 
 #include 
 #define CONFIG_HARDCODED_TABLES 0
-#include "mpegaudio_tablegen.h"
 #include "libavutil/tablegen.h"
+#include "mpegaudio_tablegen.h"
 #include "tableprint.h"
 
 int main(void)
-- 
2.6.2.windows.1

___
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-devel