MCPcopy Create free account
hub / github.com/FFmpeg/FFmpeg / put_sbits63

Function put_sbits63

libavcodec/put_bits.h:391–396  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

389}
390
391static inline void put_sbits63(PutBitContext *pb, int n, int64_t value)
392{
393 av_assert2(n >= 0 && n < 64);
394
395 put_bits63(pb, n, (uint64_t)(value) & (~(UINT64_MAX << n)));
396}
397
398/**
399 * Return the pointer to the byte where the bitstream writer will put

Callers 1

write_subframesFunction · 0.85

Calls 1

put_bits63Function · 0.85

Tested by

no test coverage detected