[xiph-commits] r12073 - trunk/ffmpeg2theora

j at svn.xiph.org j at svn.xiph.org
Fri Nov 10 03:00:40 PST 2006


Author: j
Date: 2006-11-10 03:00:37 -0800 (Fri, 10 Nov 2006)
New Revision: 12073

Modified:
   trunk/ffmpeg2theora/ffmpeg2theora.c
Log:
move math.h further to the top, otherwise compile fails on some systems

Modified: trunk/ffmpeg2theora/ffmpeg2theora.c
===================================================================
--- trunk/ffmpeg2theora/ffmpeg2theora.c	2006-11-10 10:55:08 UTC (rev 12072)
+++ trunk/ffmpeg2theora/ffmpeg2theora.c	2006-11-10 11:00:37 UTC (rev 12073)
@@ -18,8 +18,6 @@
  * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  * 
  */
-#include "common.h"
-#include "avformat.h"
 
 #include <stdio.h>
 #include <stdlib.h>
@@ -28,6 +26,9 @@
 #include <getopt.h>
 #include <math.h>
 
+#include "common.h"
+#include "avformat.h"
+
 #include "theora/theora.h"
 #include "vorbis/codec.h"
 #include "vorbis/vorbisenc.h"



More information about the commits mailing list