Lines Matching defs:pc
32 int ff_h263_find_frame_end(ParseContext *pc, const uint8_t *buf, int buf_size){
35 static int h263_find_frame_end(ParseContext *pc, const uint8_t *buf, int buf_size)
41 vop_found= pc->frame_start_found;
42 state= pc->state;
60 pc->frame_start_found=0;
61 pc->state=-1;
66 pc->frame_start_found= vop_found;
67 pc->state= state;
77 ParseContext *pc = s->priv_data;
84 next= ff_h263_find_frame_end(pc, buf, buf_size);
86 next = h263_find_frame_end(pc, buf, buf_size);
89 if (ff_combine_frame(pc, next, &buf, &buf_size) < 0) {