Searched defs:bits_per_frame (Results 1 - 5 of 5) sorted by relevance

/external/chromium_org/third_party/speex/libspeex/
H A Dmodes.h113 int bits_per_frame; /**< Number of bits per frame after encoding*/ member in struct:SpeexSubmode
/external/speex/libspeex/
H A Dmodes.h113 int bits_per_frame; /**< Number of bits per frame after encoding*/ member in struct:SpeexSubmode
/external/chromium_org/third_party/webrtc/modules/remote_bitrate_estimator/
H A Dremote_bitrate_estimator_unittest_helper.cc57 int bits_per_frame = (bitrate_bps_ + fps_ / 2) / fps_; local
58 int n_packets = std::max((bits_per_frame + 4 * kMtu) / (8 * kMtu), 1);
59 int packet_size = (bits_per_frame + 4 * n_packets) / (8 * n_packets);
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/
H A Dfirstpass.c3217 double bits_per_frame; local
3234 bits_per_frame = av_bits_per_frame;
3244 bits_per_frame = (double)
3250 if (bits_per_frame < av_bits_per_frame)
3251 bits_per_frame = av_bits_per_frame;
3254 /* bits_per_frame should comply with our minimum */
3255 if (bits_per_frame < (cpi->oxcf.target_bandwidth * cpi->oxcf.two_pass_vbrmin_section / 100))
3256 bits_per_frame = (cpi->oxcf.target_bandwidth * cpi->oxcf.two_pass_vbrmin_section / 100);
3260 (int)bits_per_frame, group_iiratio);
3265 projected_bits_perframe = bits_per_frame;
[all...]
/external/libvpx/libvpx/vp8/encoder/
H A Dfirstpass.c3217 double bits_per_frame; local
3234 bits_per_frame = av_bits_per_frame;
3244 bits_per_frame = (double)
3250 if (bits_per_frame < av_bits_per_frame)
3251 bits_per_frame = av_bits_per_frame;
3254 /* bits_per_frame should comply with our minimum */
3255 if (bits_per_frame < (cpi->oxcf.target_bandwidth * cpi->oxcf.two_pass_vbrmin_section / 100))
3256 bits_per_frame = (cpi->oxcf.target_bandwidth * cpi->oxcf.two_pass_vbrmin_section / 100);
3260 (int)bits_per_frame, group_iiratio);
3265 projected_bits_perframe = bits_per_frame;
[all...]

Completed in 249 milliseconds