Lines Matching refs:str
63 {"protocol_whitelist", "List of protocols that are allowed to be used", OFFSET(protocol_whitelist), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, D },
402 int avio_put_str(AVIOContext *s, const char *str)
405 if (str) {
406 len += strlen(str);
407 avio_write(s, (const unsigned char *) str, len);
413 static inline int put_str16(AVIOContext *s, const char *str, const int be)
415 const uint8_t *q = str;
444 int avio_put_str16 ## type(AVIOContext *s, const char *str) \
446 return put_str16(s, str, big_endian); \
1306 avio_write(s, bp.str, bp.len);