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

Function ff_put_string

libavcodec/bitstream.c:39–47  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

37#include "put_bits.h"
38
39void ff_put_string(PutBitContext *pb, const char *string, int terminate_string)
40{
41 while (*string) {
42 put_bits(pb, 8, *string);
43 string++;
44 }
45 if (terminate_string)
46 put_bits(pb, 8, 0);
47}
48
49void ff_copy_bits(PutBitContext *pb, const uint8_t *src, int length)
50{

Callers 5

put_pceFunction · 0.85
jpeg_put_commentsFunction · 0.85
encode_parse_infoFunction · 0.85
encode_frameFunction · 0.85
mpeg4_encode_vol_headerFunction · 0.85

Calls 1

put_bitsFunction · 0.70

Tested by

no test coverage detected