summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian.droege@collabora.co.uk>2012-09-16 10:56:07 +0200
committerSebastian Dröge <sebastian.droege@collabora.co.uk>2012-09-16 10:58:29 +0200
commita2503e91bf628d5eb36dc9f4cbce4b857b32081a (patch)
treedae2e8bdbfe4f2a00ca22975d6effc4cacdd963e /ext
parent829c1dcdaf5afa9d0ecaff1908f002c9a6ef140b (diff)
downloadgstreamer-plugins-bad-a2503e91bf628d5eb36dc9f4cbce4b857b32081a.tar.gz
vp8: Require latest libvpx release (1.1.0 from May 2012)
Fixes bug #684116 and simplifies configure checks.
Diffstat (limited to 'ext')
-rw-r--r--ext/vp8/gstvp8dec.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/ext/vp8/gstvp8dec.c b/ext/vp8/gstvp8dec.c
index cc15f12b3..8d0f0bc27 100644
--- a/ext/vp8/gstvp8dec.c
+++ b/ext/vp8/gstvp8dec.c
@@ -54,10 +54,6 @@
GST_DEBUG_CATEGORY_STATIC (gst_vp8dec_debug);
#define GST_CAT_DEFAULT gst_vp8dec_debug
-#ifndef HAVE_VP8_MFQE
-#define VP8_MFQE (1<<10)
-#endif
-
#define DEFAULT_POST_PROCESSING FALSE
#define DEFAULT_POST_PROCESSING_FLAGS (VP8_DEBLOCK | VP8_DEMACROBLOCK | VP8_MFQE)
#define DEFAULT_DEBLOCKING_LEVEL 4
@@ -446,11 +442,7 @@ open_codec (GstVP8Dec * dec, GstVideoCodecFrame * frame)
if ((caps & VPX_CODEC_CAP_POSTPROC) && dec->post_processing) {
vp8_postproc_cfg_t pp_cfg = { 0, };
-#ifndef HAVE_VP8_MFQE
- pp_cfg.post_proc_flag = (dec->post_processing_flags & (~VP8_MFQE));
-#else
pp_cfg.post_proc_flag = dec->post_processing_flags;
-#endif
pp_cfg.deblocking_level = dec->deblocking_level;
pp_cfg.noise_level = dec->noise_level;