Home
last modified time | relevance | path

Searched refs:table_bytes (Results 1 – 1 of 1) sorted by relevance

/third_party/ffmpeg/libavcodec/
Dralf.c433 int table_size, table_bytes, i; in decode_frame() local
440 table_bytes = (AV_RB16(avpkt->data) + 7) >> 3; in decode_frame()
441 if (table_bytes + 3 > avpkt->size || avpkt->size > RALF_MAX_PKT_SIZE) { in decode_frame()
445 if (memcmp(ctx->pkt, avpkt->data, 2 + table_bytes)) { in decode_frame()
452 memcpy(ctx->pkt + RALF_MAX_PKT_SIZE, avpkt->data + 2 + table_bytes, in decode_frame()
453 avpkt->size - 2 - table_bytes); in decode_frame()
477 table_bytes = (table_size + 7) >> 3; in decode_frame()
478 if (src_size < table_bytes + 3) { in decode_frame()
496 block_pointer = src + table_bytes + 2; in decode_frame()
497 bytes_left = src_size - table_bytes - 2; in decode_frame()