fix sharpness bug and clean up
[profile/ivi/libvpx.git] / vp8 / common / onyxc_int.h
1 /*
2  *  Copyright (c) 2010 The WebM project authors. All Rights Reserved.
3  *
4  *  Use of this source code is governed by a BSD-style license
5  *  that can be found in the LICENSE file in the root of the source
6  *  tree. An additional intellectual property rights grant can be found
7  *  in the file PATENTS.  All contributing project authors may
8  *  be found in the AUTHORS file in the root of the source tree.
9  */
10
11
12 #ifndef __INC_VP8C_INT_H
13 #define __INC_VP8C_INT_H
14
15 #include "vpx_config.h"
16 #include "vpx/internal/vpx_codec_internal.h"
17 #include "loopfilter.h"
18 #include "entropymv.h"
19 #include "entropy.h"
20 #include "idct.h"
21 #include "recon.h"
22 #include "postproc.h"
23
24 /*#ifdef PACKET_TESTING*/
25 #include "header.h"
26 /*#endif*/
27
28 /* Create/destroy static data structures. */
29
30 void vp8_initialize_common(void);
31
32 #define MINQ 0
33 #define MAXQ 127
34 #define QINDEX_RANGE (MAXQ + 1)
35
36 #define NUM_YV12_BUFFERS 4
37
38 #define MAX_PARTITIONS 9
39
40 typedef struct frame_contexts
41 {
42     vp8_prob bmode_prob [VP8_BINTRAMODES-1];
43     vp8_prob ymode_prob [VP8_YMODES-1];   /* interframe intra mode probs */
44     vp8_prob uv_mode_prob [VP8_UV_MODES-1];
45     vp8_prob sub_mv_ref_prob [VP8_SUBMVREFS-1];
46     vp8_prob coef_probs [BLOCK_TYPES] [COEF_BANDS] [PREV_COEF_CONTEXTS] [ENTROPY_NODES];
47     MV_CONTEXT mvc[2];
48     MV_CONTEXT pre_mvc[2];  /* not to caculate the mvcost for the frame if mvc doesn't change. */
49 } FRAME_CONTEXT;
50
51 typedef enum
52 {
53     ONE_PARTITION  = 0,
54     TWO_PARTITION  = 1,
55     FOUR_PARTITION = 2,
56     EIGHT_PARTITION = 3
57 } TOKEN_PARTITION;
58
59 typedef enum
60 {
61     RECON_CLAMP_REQUIRED        = 0,
62     RECON_CLAMP_NOTREQUIRED     = 1
63 } CLAMP_TYPE;
64
65 typedef enum
66 {
67     SIXTAP   = 0,
68     BILINEAR = 1
69 } INTERPOLATIONFILTERTYPE;
70
71 typedef struct VP8_COMMON_RTCD
72 {
73 #if CONFIG_RUNTIME_CPU_DETECT
74     vp8_idct_rtcd_vtable_t        idct;
75     vp8_recon_rtcd_vtable_t       recon;
76     vp8_subpix_rtcd_vtable_t      subpix;
77     vp8_loopfilter_rtcd_vtable_t  loopfilter;
78     vp8_postproc_rtcd_vtable_t    postproc;
79     int                           flags;
80 #else
81     int unused;
82 #endif
83 } VP8_COMMON_RTCD;
84
85 typedef struct VP8Common
86
87 {
88     struct vpx_internal_error_info  error;
89
90     DECLARE_ALIGNED(16, short, Y1dequant[QINDEX_RANGE][16]);
91     DECLARE_ALIGNED(16, short, Y2dequant[QINDEX_RANGE][16]);
92     DECLARE_ALIGNED(16, short, UVdequant[QINDEX_RANGE][16]);
93
94     int Width;
95     int Height;
96     int horiz_scale;
97     int vert_scale;
98
99     YUV_TYPE clr_type;
100     CLAMP_TYPE  clamp_type;
101
102     YV12_BUFFER_CONFIG *frame_to_show;
103
104     YV12_BUFFER_CONFIG yv12_fb[NUM_YV12_BUFFERS];
105     int fb_idx_ref_cnt[NUM_YV12_BUFFERS];
106     int new_fb_idx, lst_fb_idx, gld_fb_idx, alt_fb_idx;
107
108     YV12_BUFFER_CONFIG post_proc_buffer;
109     YV12_BUFFER_CONFIG temp_scale_frame;
110
111
112     FRAME_TYPE last_frame_type;  /* Save last frame's frame type for motion search. */
113     FRAME_TYPE frame_type;
114
115     int show_frame;
116
117     int frame_flags;
118     int MBs;
119     int mb_rows;
120     int mb_cols;
121     int mode_info_stride;
122
123     /* profile settings */
124     int mb_no_coeff_skip;
125     int no_lpf;
126     int use_bilinear_mc_filter;
127     int full_pixel;
128
129     int base_qindex;
130     int last_kf_gf_q;  /* Q used on the last GF or KF */
131
132     int y1dc_delta_q;
133     int y2dc_delta_q;
134     int y2ac_delta_q;
135     int uvdc_delta_q;
136     int uvac_delta_q;
137
138     unsigned int frames_since_golden;
139     unsigned int frames_till_alt_ref_frame;
140
141     /* We allocate a MODE_INFO struct for each macroblock, together with
142        an extra row on top and column on the left to simplify prediction. */
143
144     MODE_INFO *mip; /* Base of allocated array */
145     MODE_INFO *mi;  /* Corresponds to upper left visible macroblock */
146     MODE_INFO *prev_mip; /* MODE_INFO array 'mip' from last decoded frame */
147     MODE_INFO *prev_mi;  /* 'mi' from last frame (points into prev_mip) */
148
149
150     INTERPOLATIONFILTERTYPE mcomp_filter_type;
151     LOOPFILTERTYPE filter_type;
152
153     loop_filter_info_n lf_info;
154
155     int filter_level;
156     int last_sharpness_level;
157     int sharpness_level;
158
159     int refresh_last_frame;       /* Two state 0 = NO, 1 = YES */
160     int refresh_golden_frame;     /* Two state 0 = NO, 1 = YES */
161     int refresh_alt_ref_frame;     /* Two state 0 = NO, 1 = YES */
162
163     int copy_buffer_to_gf;         /* 0 none, 1 Last to GF, 2 ARF to GF */
164     int copy_buffer_to_arf;        /* 0 none, 1 Last to ARF, 2 GF to ARF */
165
166     int refresh_entropy_probs;    /* Two state 0 = NO, 1 = YES */
167
168     int ref_frame_sign_bias[MAX_REF_FRAMES];    /* Two state 0, 1 */
169
170     /* Y,U,V,Y2 */
171     ENTROPY_CONTEXT_PLANES *above_context;   /* row of context for each plane */
172     ENTROPY_CONTEXT_PLANES left_context;  /* (up to) 4 contexts "" */
173
174
175     /* keyframe block modes are predicted by their above, left neighbors */
176
177     vp8_prob kf_bmode_prob [VP8_BINTRAMODES] [VP8_BINTRAMODES] [VP8_BINTRAMODES-1];
178     vp8_prob kf_ymode_prob [VP8_YMODES-1];  /* keyframe "" */
179     vp8_prob kf_uv_mode_prob [VP8_UV_MODES-1];
180
181
182     FRAME_CONTEXT lfc; /* last frame entropy */
183     FRAME_CONTEXT fc;  /* this frame entropy */
184
185     unsigned int current_video_frame;
186
187     int near_boffset[3];
188     int version;
189
190     TOKEN_PARTITION multi_token_partition;
191
192 #ifdef PACKET_TESTING
193     VP8_HEADER oh;
194 #endif
195     double bitrate;
196     double framerate;
197
198 #if CONFIG_RUNTIME_CPU_DETECT
199     VP8_COMMON_RTCD rtcd;
200 #endif
201 #if CONFIG_MULTITHREAD
202     int processor_core_count;
203 #endif
204     struct postproc_state  postproc_state;
205 } VP8_COMMON;
206
207 #endif