Skip to content

Commit

Permalink
vp8: Fix to enabling MFQE
Browse files Browse the repository at this point in the history
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
  • Loading branch information
marco99zz committed Dec 12, 2018
1 parent e9d2f44 commit 763f831
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions vpx/vp8.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 763f831

Please sign in to comment.