Searched refs:buf_p (Results 1 - 3 of 3) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/
H A Dffv1.c1090 uint8_t *buf_p; local
1135 buf_p=buf;
1151 memmove(buf_p, fs->ac ? fs->c.bytestream_start : fs->pb.buf, bytes);
1153 AV_WB24(buf_p+bytes, bytes);
1156 buf_p += bytes;
1203 return buf_p-buf;
1651 const uint8_t *buf_p; local
1701 buf_p= buf + buf_size;
1704 int v= AV_RB24(buf_p-3)+3;
1705 if(buf_p
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Dffv1dec.c863 const uint8_t *buf_p; local
908 buf_p = buf + buf_size;
914 if (i || f->version > 2) v = AV_RB24(buf_p-trailer) + trailer;
915 else v = buf_p - c->bytestream_start;
916 if (buf_p - c->bytestream_start < v) {
920 buf_p -= v;
923 unsigned crc = av_crc(av_crc_get_table(AV_CRC_32_IEEE), 0, buf_p, v);
939 ff_init_range_decoder(&fs->c, buf_p, v);
941 fs->c.bytestream_end = (uint8_t *)(buf_p + v);
H A Dffv1enc.c1176 uint8_t *buf_p; local
1267 buf_p = pkt->data;
1282 memmove(buf_p, fs->c.bytestream_start, bytes);
1284 AV_WB24(buf_p + bytes, bytes);
1289 buf_p[bytes++] = 0;
1290 v = av_crc(av_crc_get_table(AV_CRC_32_IEEE), 0, buf_p, bytes);
1291 AV_WL32(buf_p + bytes, v);
1294 buf_p += bytes;
1301 pkt->size = buf_p - pkt->data;

Completed in 176 milliseconds