Lines Matching defs:buf_size
46 const uint8_t *buf, int buf_size)
53 int flush = !buf_size;
55 for(i=0; i<buf_size; ){
57 int inc= FFMIN(buf_size - i, s->frame_size);
67 while(i<buf_size){
99 next = buf_size;
105 return buf_size; /* parsers must not return error codes */
115 if (ff_combine_frame(pc, next, &buf, &buf_size) < 0) {
118 return buf_size;
121 if (flush && buf_size >= ID3v1_TAG_SIZE && memcmp(buf, "TAG", 3) == 0) {
127 if (flush && buf_size >= APE_TAG_FOOTER_BYTES && memcmp(buf, APE_TAG_PREAMBLE, 8) == 0) {
134 *poutbuf_size = buf_size;