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

Function get_strl

libavformat/rmdec.c:70–76  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

68} RMDemuxContext;
69
70static inline void get_strl(AVIOContext *pb, char *buf, int buf_size, int len)
71{
72 int read = avio_get_str(pb, len, buf, buf_size);
73
74 if (read > 0)
75 avio_skip(pb, len - read);
76}
77
78static void get_str8(AVIOContext *pb, char *buf, int buf_size)
79{

Callers 3

get_str8Function · 0.85
rm_read_metadataFunction · 0.85

Calls 2

avio_get_strFunction · 0.85
avio_skipFunction · 0.85

Tested by

no test coverage detected