Lines Matching defs:buffer
232 * Decode characters to UTF-8 according to encoding type. The decoded buffer is
236 * @param dst Pointer where the address of the buffer with the decoded bytes is
276 char buffer[2];
277 avio_read_partial(pb, buffer, 2);
279 unsigned int value = (buffer[0] << 8) + buffer[1];
899 unsigned char *buffer = NULL;
1044 av_fast_malloc(&buffer, &buffer_size, tlen);
1045 if (!buffer) {
1051 uint8_t *b = buffer;
1052 uint8_t *t = buffer;
1055 if (avio_read(pb, buffer, tlen) != tlen) {
1066 ffio_init_context(&pb_local, buffer, b - buffer, 0, NULL, NULL, NULL,
1068 tlen = b - buffer;
1069 pbx = &pb_local.pub; // read from sync buffer
1090 err = avio_read(pb, buffer, tlen);
1098 err = uncompress(uncompressed_buffer, &dlen, buffer, tlen);
1105 pbx = &pb_local.pub; // read from sync buffer
1138 av_free(buffer);