Lines Matching refs:str
109 { "brand", "Override major brand", offsetof(MOVMuxContext, major_brand), AV_OPT_TYPE_STRING, {.str = NULL}, .flags = AV_OPT_FLAG_ENCODING_PARAM },
114 { "encryption_scheme", "Configures the encryption scheme, allowed values are none, cenc-aes-ctr", offsetof(MOVMuxContext, encryption_scheme_str), AV_OPT_TYPE_STRING, {.str = NULL}, .flags = AV_OPT_FLAG_ENCODING_PARAM },
3747 const char *tag, const char *str)
3750 AVDictionaryEntry *t = av_dict_get(st->metadata, str, NULL, 0);
4642 static uint16_t language_code(const char *str)
4644 return (((str[0] - 0x60) & 0x1F) << 10) +
4645 (((str[1] - 0x60) & 0x1F) << 5) +
4646 (( str[2] - 0x60) & 0x1F);
4650 const char *tag, const char *str)
4653 AVDictionaryEntry *t = av_dict_get(s->metadata, str, NULL, 0);
4761 const char *str, const char *lang, int type)
4763 int len = utf8len(str) + 1;
4770 ascii_to_wc(pb, str);