From 763f8318de2cee41d748539cee5810fc0efcad68 Mon Sep 17 00:00:00 2001 From: Marco Paniconi Date: Tue, 11 Dec 2018 21:57:57 -0800 Subject: [PATCH] vp8: Fix to enabling MFQE Remove the unused *_DEBUG_* enum values in vpx/vp8.h This fixes issue with enabling MFQE, which was caused in 4807f15, where the unused DEBUG flags were removed from common/ppflags.h but not in vp8.h. BUG=913246 Change-Id: I47f114ef20adc084cb4883add5ac3ebf58ae9f1d --- vpx/vp8.h | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/vpx/vp8.h b/vpx/vp8.h index 442163cc4..84b9c8c9b 100644 --- a/vpx/vp8.h +++ b/vpx/vp8.h @@ -70,12 +70,7 @@ enum vp8_postproc_level { VP8_DEBLOCK = 1 << 0, VP8_DEMACROBLOCK = 1 << 1, VP8_ADDNOISE = 1 << 2, - VP8_DEBUG_TXT_FRAME_INFO = 1 << 3, /**< print frame information */ - VP8_DEBUG_TXT_MBLK_MODES = - 1 << 4, /**< print macro block modes over each macro block */ - VP8_DEBUG_TXT_DC_DIFF = 1 << 5, /**< print dc diff for each macro block */ - VP8_DEBUG_TXT_RATE_INFO = 1 << 6, /**< print video rate info (encoder only) */ - VP8_MFQE = 1 << 10 + VP8_MFQE = 1 << 3 }; /*!\brief post process flags -- 2.40.0