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

Function utf8len

libavformat/movenc.c:1490–1499  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1488}
1489
1490static int utf8len(const uint8_t *b)
1491{
1492 int len=0;
1493 int val;
1494 while(*b){
1495 GET_UTF8(val, *b++, return -1;)
1496 len++;
1497 }
1498 return len;
1499}
1500
1501static int ascii_to_wc(ByteIOContext *pb, const uint8_t *b)
1502{

Callers 2

mov_write_3gp_udta_tagFunction · 0.85
mov_write_psp_udta_tagFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected