1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/media/libvpx/vp8/common/ppflags.h Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,41 @@ 1.4 +/* 1.5 + * Copyright (c) 2010 The WebM project authors. All Rights Reserved. 1.6 + * 1.7 + * Use of this source code is governed by a BSD-style license 1.8 + * that can be found in the LICENSE file in the root of the source 1.9 + * tree. An additional intellectual property rights grant can be found 1.10 + * in the file PATENTS. All contributing project authors may 1.11 + * be found in the AUTHORS file in the root of the source tree. 1.12 + */ 1.13 + 1.14 + 1.15 +#ifndef __INC_PPFLAGS_H 1.16 +#define __INC_PPFLAGS_H 1.17 +enum 1.18 +{ 1.19 + VP8D_NOFILTERING = 0, 1.20 + VP8D_DEBLOCK = 1<<0, 1.21 + VP8D_DEMACROBLOCK = 1<<1, 1.22 + VP8D_ADDNOISE = 1<<2, 1.23 + VP8D_DEBUG_TXT_FRAME_INFO = 1<<3, 1.24 + VP8D_DEBUG_TXT_MBLK_MODES = 1<<4, 1.25 + VP8D_DEBUG_TXT_DC_DIFF = 1<<5, 1.26 + VP8D_DEBUG_TXT_RATE_INFO = 1<<6, 1.27 + VP8D_DEBUG_DRAW_MV = 1<<7, 1.28 + VP8D_DEBUG_CLR_BLK_MODES = 1<<8, 1.29 + VP8D_DEBUG_CLR_FRM_REF_BLKS = 1<<9, 1.30 + VP8D_MFQE = 1<<10 1.31 +}; 1.32 + 1.33 +typedef struct 1.34 +{ 1.35 + int post_proc_flag; 1.36 + int deblocking_level; 1.37 + int noise_level; 1.38 + int display_ref_frame_flag; 1.39 + int display_mb_modes_flag; 1.40 + int display_b_modes_flag; 1.41 + int display_mv_flag; 1.42 +} vp8_ppflags_t; 1.43 + 1.44 +#endif