X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=libavcodec%2Frangecoder.h;h=4d4ca4d526c33a54da7299e5e09d8518ba0f42be;hb=191f68aec1a5d3a5d61e14c9653189ffd7b55f3b;hp=4495f6df1a58f9f5f8565cfb6fd274d740efbe21;hpb=20b10ba83c46d1f2b381b0b3e70ce44195473815;p=ffmpeg diff --git a/libavcodec/rangecoder.h b/libavcodec/rangecoder.h index 4495f6df1a5..4d4ca4d526c 100644 --- a/libavcodec/rangecoder.h +++ b/libavcodec/rangecoder.h @@ -57,6 +57,15 @@ void ff_init_range_decoder(RangeCoder *c, const uint8_t *buf, int buf_size); */ int ff_rac_terminate(RangeCoder *c, int version); +/** + * Check if at the current position there is a valid looking termination + * @param version version 0 requires the decoder to know the data size in bytes + * version 1 needs about 1 bit more space but does not need to + * carry the size from encoder to decoder + * @returns negative AVERROR code on error or non negative. + */ +int ff_rac_check_termination(RangeCoder *c, int version); + void ff_build_rac_states(RangeCoder *c, int factor, int max_p); static inline void renorm_encoder(RangeCoder *c)