Home | History | Annotate | Download | only in common

Lines Matching refs:VP8_PTR

25     typedef int *VP8_PTR;
201 VP8_PTR vp8_create_compressor(VP8_CONFIG *oxcf);
202 void vp8_remove_compressor(VP8_PTR *comp);
204 void vp8_init_config(VP8_PTR onyx, VP8_CONFIG *oxcf);
205 void vp8_change_config(VP8_PTR onyx, VP8_CONFIG *oxcf);
209 int vp8_receive_raw_frame(VP8_PTR comp, unsigned int frame_flags, YV12_BUFFER_CONFIG *sd, INT64 time_stamp, INT64 end_time_stamp);
210 int vp8_get_compressed_data(VP8_PTR comp, unsigned int *frame_flags, unsigned long *size, unsigned char *dest, INT64 *time_stamp, INT64 *time_end, int flush);
211 int vp8_get_preview_raw_frame(VP8_PTR comp, YV12_BUFFER_CONFIG *dest, vp8_ppflags_t *flags);
213 int vp8_use_as_reference(VP8_PTR comp, int ref_frame_flags);
214 int vp8_update_reference(VP8_PTR comp, int ref_frame_flags);
215 int vp8_get_reference(VP8_PTR comp, VP8_REFFRAME ref_frame_flag, YV12_BUFFER_CONFIG *sd);
216 int vp8_set_reference(VP8_PTR comp, VP8_REFFRAME ref_frame_flag, YV12_BUFFER_CONFIG *sd);
217 int vp8_update_entropy(VP8_PTR comp, int update);
218 int vp8_set_roimap(VP8_PTR comp, unsigned char *map, unsigned int rows, unsigned int cols, int delta_q[4], int delta_lf[4], unsigned int threshold[4]);
219 int vp8_set_active_map(VP8_PTR comp, unsigned char *map, unsigned int rows, unsigned int cols);
220 int vp8_set_internal_size(VP8_PTR comp, VPX_SCALING horiz_mode, VPX_SCALING vert_mode);
221 int vp8_get_quantizer(VP8_PTR c);