Lines Matching defs:frame_flags

3065 static void Pass1Encode(VP8_COMP *cpi, unsigned long *size, unsigned char *dest, unsigned int *frame_flags)
3069 (void) frame_flags;
3569 unsigned int *frame_flags
3670 (cm->frame_flags & FRAMEFLAGS_KEY) ||
5087 cm->frame_flags = cm->frame_flags | FRAMEFLAGS_GOLDEN;
5089 cm->frame_flags = cm->frame_flags&~FRAMEFLAGS_GOLDEN;
5092 cm->frame_flags = cm->frame_flags | FRAMEFLAGS_ALTREF;
5094 cm->frame_flags = cm->frame_flags&~FRAMEFLAGS_ALTREF;
5143 *frame_flags = cm->frame_flags | FRAMEFLAGS_KEY;
5152 *frame_flags = cm->frame_flags&~FRAMEFLAGS_KEY;
5197 static void Pass2Encode(VP8_COMP *cpi, unsigned long *size, unsigned char *dest, unsigned char * dest_end, unsigned int *frame_flags)
5203 encode_frame_to_data_rate(cpi, size, dest, dest_end, frame_flags);
5215 int vp8_receive_raw_frame(VP8_COMP *cpi, unsigned int frame_flags, YV12_BUFFER_CONFIG *sd, int64_t time_stamp, int64_t end_time)
5231 frame_flags, cpi->active_map_enabled ? cpi->active_map : NULL))
5254 int vp8_get_compressed_data(VP8_COMP *cpi, unsigned int *frame_flags, unsigned long *size, unsigned char *dest, unsigned char *dest_end, int64_t *time_stamp, int64_t *time_end, int flush)
5338 *frame_flags = cpi->source->flags;
5511 cm->frame_flags = *frame_flags;
5545 Pass1Encode(cpi, size, dest, frame_flags);
5549 Pass2Encode(cpi, size, dest, dest_end, frame_flags);
5553 encode_frame_to_data_rate(cpi, size, dest, dest_end, frame_flags);
5779 fprintf(f, "frame:%4d flags:%4x Q:%4d P:%4d Size:%5d\n", cpi->common.current_video_frame, *frame_flags, cpi->common.base_qindex, cpi->prob_skip_false, *size);