From 7c3b00f82eb5c79263d96b380e587e2c2530983c Mon Sep 17 00:00:00 2001 From: Mikhail Burakov Date: Sat, 13 May 2023 17:50:29 +0200 Subject: Add emulation prevention byte to bitstream implementation --- bitstream.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'bitstream.h') diff --git a/bitstream.h b/bitstream.h index 87edec3..1520c57 100644 --- a/bitstream.h +++ b/bitstream.h @@ -31,4 +31,7 @@ void BitstreamAppendUE(struct Bitstream* bitstream, uint32_t bits); void BitstreamAppendSE(struct Bitstream* bitstream, int32_t bits); void BitstreamByteAlign(struct Bitstream* bitstream); +void BitstreamInflate(struct Bitstream* bitstream, + const struct Bitstream* source); + #endif // STREAMER_BITSTREAM_H_ -- cgit v1.2.3