Home
last modified time | relevance | path

Searched refs:max_bandwidth (Results 1 – 6 of 6) sorted by relevance

/third_party/ffmpeg/libavcodec/
Dlibopusenc.c41 int max_bandwidth; member
162 OPUS_SET_MAX_BANDWIDTH(opts->max_bandwidth)); in libopus_configure_encoder()
314 opus->opts.max_bandwidth = OPUS_BANDWIDTH_NARROWBAND; in libopus_encode_init()
317 opus->opts.max_bandwidth = OPUS_BANDWIDTH_MEDIUMBAND; in libopus_encode_init()
320 opus->opts.max_bandwidth = OPUS_BANDWIDTH_WIDEBAND; in libopus_encode_init()
323 opus->opts.max_bandwidth = OPUS_BANDWIDTH_SUPERWIDEBAND; in libopus_encode_init()
326 opus->opts.max_bandwidth = OPUS_BANDWIDTH_FULLBAND; in libopus_encode_init()
/third_party/ffmpeg/libavformat/
Dhlsproto.c220 int max_bandwidth = 0, maxvar = -1; in hls_open() local
222 if (s->variants[i]->bandwidth > max_bandwidth || i == 0) { in hls_open()
223 max_bandwidth = s->variants[i]->bandwidth; in hls_open()
/third_party/gstreamer/gstplugins_bad/ext/dash/
Dgstmpdparser.h134 guint max_bandwidth; /* max bandwidth allowed for this mimeType */ member
Dgstmpdclient.c163 gint max_bandwidth)
171 if (max_bandwidth <= 0) /* 0 => get highest representation available */
176 if (representation && representation->bandwidth <= max_bandwidth) {
1624 stream->max_bandwidth); in gst_mpd_client_setup_streaming()
2546 gint64 max_bandwidth, gint max_video_width, gint max_video_height, gint in gst_mpd_client_get_rep_idx_with_max_bandwidth() argument
2553 GST_DEBUG ("max_bandwidth = %" G_GINT64_FORMAT, max_bandwidth); in gst_mpd_client_get_rep_idx_with_max_bandwidth()
2558 if (max_bandwidth <= 0) /* 0 => get lowest representation available */ in gst_mpd_client_get_rep_idx_with_max_bandwidth()
2590 if (representation->bandwidth <= max_bandwidth && in gst_mpd_client_get_rep_idx_with_max_bandwidth()
Dgstmpdclient.h100 gint gst_mpd_client_get_rep_idx_with_max_bandwidth (GList *Representations, gint64 max_bandwidth, g…
/third_party/gstreamer/gstplugins_bad/
DChangeLog92008 correct representation in case max_bandwidth parameter is 0.