Searched refs:bandwidth_str (Results 1 – 2 of 2) sorted by relevance
/third_party/ffmpeg/libavformat/ |
D | webmdashenc.c | 180 const char *bandwidth_str; in write_representation() local 183 bandwidth_str = bandwidth->value; in write_representation() 186 bandwidth_str = (par->codec_type == AVMEDIA_TYPE_AUDIO) ? "128000" : "1000000"; in write_representation() 190 avio_printf(pb, " bandwidth=\"%s\"", bandwidth_str); in write_representation()
|
D | dashenc.c | 829 char bandwidth_str[64] = {'\0'}; in write_adaptation_set() local 835 snprintf(bandwidth_str, sizeof(bandwidth_str), " bandwidth=\"%d\"", os->bit_rate); in write_adaptation_set() 838 snprintf(bandwidth_str, sizeof(bandwidth_str), " bandwidth=\"%d\"", average_bit_rate); in write_adaptation_set() 840 … snprintf(bandwidth_str, sizeof(bandwidth_str), " bandwidth=\"%d\"", os->first_segment_bit_rate); in write_adaptation_set() 844 …i, os->format_name, os->codec_str, bandwidth_str, s->streams[i]->codecpar->width, s->streams[i]->c… in write_adaptation_set() 862 … i, os->format_name, os->codec_str, bandwidth_str, s->streams[i]->codecpar->sample_rate); in write_adaptation_set()
|