Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/FFmpeg/FFmpeg
/ put_sbits
Function
put_sbits
libavcodec/put_bits.h:291–296 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
289
}
290
291
static inline void put_sbits(PutBitContext *pb, int n, int32_t value)
292
{
293
av_assert2(n >= 0 && n <= 31);
294
295
put_bits(pb, n, av_zero_extend(value, n));
296
}
297
298
/**
299
* Write exactly 32 bits into a bitstream.
Callers
15
ff_rv20_encode_picture_header
Function · 0.85
pack_int32
Function · 0.85
pack_float_sample
Function · 0.85
put_line
Function · 0.85
output_audio_block
Function · 0.85
generate_ext_v1
Function · 0.85
put_cie_xy
Function · 0.85
ff_dovi_rpu_generate
Function · 0.85
encode_vlc_codeword
Function · 0.85
encode_acs
Function · 0.85
ff_mjpeg_encode_dc
Function · 0.85
quantize_and_encode_band_cost_template
Function · 0.85
Calls
1
put_bits
Function · 0.70
Tested by
1
main
Function · 0.68