Lines Matching defs:VP9Context
94 typedef struct VP9Context { struct
95 VP9SharedContext s;
96 VP9TileData *td;
98 VP9DSPContext dsp;
99 VideoDSPContext vdsp;
100 GetBitContext gb;
101 VP56RangeCoder c;
102 int pass, active_tile_cols;
105 pthread_mutex_t progress_mutex;
106 pthread_cond_t progress_cond;
107 atomic_int *entries;
110 uint8_t ss_h, ss_v;
111 uint8_t last_bpp, bpp_index, bytesperpixel;
112 uint8_t last_keyframe;
117 int w, h;
118 enum AVPixelFormat pix_fmt, last_fmt, gf_fmt;
119 unsigned sb_cols, sb_rows, rows, cols;
120 ThreadFrame next_refs[8];
122 struct {
125 } filter_lut;
126 struct {
129 } prob_ctx[4];
130 struct {
133 } prob;
136 uint8_t *above_partition_ctx;
137 uint8_t *above_mode_ctx;
162 } VP9Context; argument