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

Function copy_bits

libavcodec/mpeg4audio.c:137–144  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

135}
136
137static av_always_inline unsigned int copy_bits(PutBitContext *pb,
138 GetBitContext *gb,
139 int bits)
140{
141 unsigned int el = get_bits(gb, bits);
142 put_bits(pb, bits, el);
143 return el;
144}
145
146int ff_copy_pce_data(PutBitContext *pb, GetBitContext *gb)
147{

Callers 1

ff_copy_pce_dataFunction · 0.70

Calls 1

get_bitsFunction · 0.85

Tested by

no test coverage detected