vp8: move #ifdef HAVE_VP8_ENCODER/DECODER
authorPhilip Jägenstedt <philipj@opera.com>
Fri, 21 May 2010 06:13:06 +0000 (08:13 +0200)
committerSebastian Dröge <sebastian.droege@collabora.co.uk>
Fri, 21 May 2010 06:27:06 +0000 (08:27 +0200)
Otherwise we'll try including e.g. <vpx/vp8cx.h> which doesn't exist.

ext/vp8/gstvp8dec.c
ext/vp8/gstvp8enc.c

index 1e059c8..bc8fb68 100644 (file)
@@ -24,6 +24,8 @@
 #include "config.h"
 #endif
 
+#ifdef HAVE_VP8_DECODER
+
 #include <gst/gst.h>
 #include <gst/video/gstbasevideodecoder.h>
 #include <gst/video/gstbasevideoutils.h>
@@ -44,8 +46,6 @@
 
 #include "gstvp8utils.h"
 
-#ifdef HAVE_VP8_DECODER
-
 GST_DEBUG_CATEGORY_STATIC (gst_vp8dec_debug);
 #define GST_CAT_DEFAULT gst_vp8dec_debug
 
index ba677a1..f390af3 100644 (file)
@@ -24,6 +24,8 @@
 #include "config.h"
 #endif
 
+#ifdef HAVE_VP8_ENCODER
+
 #include <gst/gst.h>
 #include <gst/video/gstbasevideoencoder.h>
 #include <gst/video/gstbasevideoutils.h>
@@ -45,8 +47,6 @@
 
 #include "gstvp8utils.h"
 
-#ifdef HAVE_VP8_ENCODER
-
 GST_DEBUG_CATEGORY_STATIC (gst_vp8enc_debug);
 #define GST_CAT_DEFAULT gst_vp8enc_debug