Skip to content
Snippets Groups Projects
Commit b433c66e authored by Mathis Rosenhauer's avatar Mathis Rosenhauer
Browse files

decode: seek to RSI

parent 2d9a7312
No related branches found
No related tags found
1 merge request!3Rsi block access
......@@ -825,3 +825,30 @@ int aec_buffer_decode(struct aec_stream *strm)
aec_decode_end(strm);
return status;
}
int aec_buffer_seek(struct aec_stream *strm,
size_t byte_offset,
unsigned char bit_offset)
{
struct internal_state *state = strm->state;
if (bit_offset > 7)
return AEC_CONF_ERROR;
if (strm->avail_in < byte_offset)
return AEC_MEM_ERROR;
strm->next_in += byte_offset;
strm->avail_in -= byte_offset;
if (bit_offset > 0) {
if (strm->avail_in < 1)
return AEC_MEM_ERROR;
state->acc = (uint64_t)strm->next_in[0];
state->bitp = 8 - bit_offset;
strm->next_in++;
strm->avail_in--;
}
return AEC_OK;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment