Lines Matching defs:buf
45 const uint8_t *buf, int len, int ebits, int m)
50 init_put_bits(&pb, s->buf, 32);
65 memcpy(s->buf + 4, buf, len);
67 ff_rtp_send_data(s1, s->buf, len + 4, m);
71 const struct H263State *state, const uint8_t *buf,
77 init_put_bits(&pb, s->buf, 64);
96 memcpy(s->buf + 8, buf, len);
98 ff_rtp_send_data(s1, s->buf, len + 8, m);
101 void ff_rtp_send_h263_rfc2190(AVFormatContext *s1, const uint8_t *buf, int size,
110 const uint8_t *buf_base = buf;
114 init_get_bits(&gb, buf, size*8);
133 const uint8_t *end = ff_h263_find_resync_marker_reverse(buf,
134 buf + len);
135 len = end - buf;
140 if (pos >= buf - buf_base)
167 len = pos_next_mb_info - (buf - buf_base);
178 if (size > 2 && !buf[0] && !buf[1])
179 send_mode_a(s1, &info, buf, len, ebits, len == size);
181 send_mode_b(s1, &info, &packet_start_state, buf, len, sbits,
190 buf += len;