Mercurial > mplayer.hg
changeset 28587:1064e9bbaeea
Move libavutil #includes below all others so that they do not override
system functions and cause the warning:
In file included from mp3lib/sr1.c:27:
/mp_msg.h:115: warning: 'please_use_av_log_instead_of_printf' is an unrecognized format function type
author | diego |
---|---|
date | Tue, 17 Feb 2009 03:08:56 +0000 |
parents | 7c20cc8fda01 |
children | 7f03a6d3c941 |
files | mp3lib/sr1.c |
diffstat | 1 files changed, 3 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/mp3lib/sr1.c Tue Feb 17 02:57:10 2009 +0000 +++ b/mp3lib/sr1.c Tue Feb 17 03:08:56 2009 +0000 @@ -19,8 +19,6 @@ #include "mpg123.h" #include "huffman.h" #include "mp3.h" -#include "libavutil/common.h" -#include "libavutil/internal.h" #include "mpbswap.h" #include "cpudetect.h" //#include "liba52/mm_accel.h" @@ -28,6 +26,9 @@ #include "libvo/fastmemcpy.h" +#include "libavutil/common.h" +#include "libavutil/internal.h" + #undef fprintf #undef printf