Lines Matching defs:buf_size
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)
46 for(i=0; i<buf_size; i++){
57 for(; i<buf_size; i++){
75 const uint8_t *buf, int buf_size)
81 next = buf_size;
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) {
92 return buf_size;
97 *poutbuf_size = buf_size;