Lines Matching defs:coda_ctx
191 struct coda_ctx { struct
192 struct coda_dev *dev;
193 struct mutex buffer_mutex;
194 struct list_head list;
195 struct work_struct pic_run_work;
196 struct work_struct seq_end_work;
197 struct completion completion;
198 const struct coda_video_device *cvd;
199 const struct coda_context_ops *ops;
200 int aborting;
201 int initialized;
202 int streamon_out;
203 int streamon_cap;
204 u32 qsequence;
205 u32 osequence;
206 u32 sequence_offset;
207 struct coda_q_data q_data[2];
208 enum coda_inst_type inst_type;
209 const struct coda_codec *codec;
210 enum v4l2_colorspace colorspace;
211 struct coda_params params;
212 struct v4l2_ctrl_handler ctrls;
213 struct v4l2_fh fh;
214 int gopcounter;
215 int runcounter;
216 char vpu_header[3][64];
217 int vpu_header_size[3];
218 struct kfifo bitstream_fifo;
219 struct mutex bitstream_mutex;
220 struct coda_aux_buf bitstream;
221 bool hold;
222 struct coda_aux_buf parabuf;
223 struct coda_aux_buf psbuf;
224 struct coda_aux_buf slicebuf;
248 void coda_write_base(struct coda_ctx *ctx, struct coda_q_data *q_data, argument