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

Function ff_put_string

libavcodec/bitstream.c:51–59  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

49}
50
51void ff_put_string(PutBitContext *pb, const char *string, int terminate_string)
52{
53 while(*string){
54 put_bits(pb, 8, *string);
55 string++;
56 }
57 if(terminate_string)
58 put_bits(pb, 8, 0);
59}
60
61void ff_copy_bits(PutBitContext *pb, const uint8_t *src, int length)
62{

Callers 2

jpeg_put_commentsFunction · 0.85
mpeg4_encode_vol_headerFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected