HomeSort by relevance Sort by last modified time
    Searched full:bitrate (Results 176 - 200 of 613) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/chromium_org/tools/telemetry/telemetry/core/platform/
__init__.py 141 min_bitrate_mbps: The minimum capture bitrate in MegaBits Per Second.
142 The platform is free to deliver a higher bitrate if it can do so
  /external/libvorbis/doc/vorbisfile/
fileinfo.html 29 <td>Returns the average bitrate of the current logical bitstream.</td>
33 <td>Returns the exact bitrate since the last call of this function, or -1 if at the beginning of the bitream or no new information is available.</td>
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/adaptivestreaming/
FlatPackageWriterImpl.java 123 String bitrate = Long.toString(manifestWriter.getBitrate(track)); local
136 File bitRateOutputDir = new File(mediaOutDir, bitrate);
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/samplegrouping/
RateShareEntry.java 40 * bitrate, i.e., the bitrate that should be shared. If only one operation point is defined, the target rate share
  /external/webrtc/src/modules/audio_coding/codecs/isac/main/source/
bandwidth_estimator.h 124 WebRtc_Word32* bitRate);
145 * update long-term average bitrate and amount of data in buffer
bandwidth_estimator.c 443 // limit maximum bitrate
746 WebRtc_Word32* bitRate)
751 *bitRate = MIN_ISAC_BW;
755 *bitRate = MAX_ISAC_BW;
759 *bitRate = (WebRtc_Word32)(bwest_str->send_bw_avg);
786 * update long-term average bitrate and amount of data in buffer
908 * update long-term average bitrate and amount of data in buffer
  /frameworks/av/media/libstagefright/codecs/aacenc/src/
tns.c 133 Word16 InitTnsConfigurationLong(Word32 bitRate, /*!< bitrate */
148 bitratePerChannel = bitRate >> 1;
151 bitratePerChannel = bitRate;
200 Word16 InitTnsConfigurationShort(Word32 bitRate, /*!< bitrate */
214 bitratePerChannel = L_shr(bitRate,1);
217 bitratePerChannel = bitRate;
block_switch.c 76 const Word32 bitRate, const Word16 nChannels)
80 if ((sub(nChannels,1)==0 && L_sub(bitRate, 24000) > 0) ||
81 (sub(nChannels,1)>0 && bitRate > (nChannels * 16000))) {
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
rate_control.h 85 Int max_BitVariance_num; /* the number of the maximum bit variance within the given buffer with the unit of 10% of bitrate/framerate*/
88 Int bitrate; member in struct:__anon32429
  /frameworks/av/media/libstagefright/include/
AwesomePlayer.h 203 int64_t mBitrate; // total bitrate of the file (in bps) or -1 if unknown.
294 bool getBitrate(int64_t *bitrate);
  /packages/apps/VideoEditor/src/com/android/videoeditor/
ExportOptionsDialog.java 40 * @param movieBitrate The movie bitrate (from MediaProperties)
156 * @return The movie bitrate
  /external/chromium_org/content/renderer/media/
buffered_data_source.cc 230 void BufferedDataSource::SetBitrate(int bitrate) {
232 &BufferedDataSource::SetBitrateTask, weak_this_, bitrate));
299 void BufferedDataSource::SetBitrateTask(int bitrate) {
303 bitrate_ = bitrate;
304 loader_->SetBitrate(bitrate);
  /frameworks/av/media/libstagefright/
AwesomePlayer.cpp 374 // Attempt to approximate overall stream bitrate by summing all
375 // tracks' individual bitrates, if not all of them advertise bitrate,
384 int32_t bitrate; local
385 if (!meta->findInt32(kKeyBitRate, &bitrate)) {
388 ALOGV("track of type '%s' does not publish bitrate", mime);
394 totalBitRate += bitrate;
624 bool AwesomePlayer::getBitrate(int64_t *bitrate) {
628 *bitrate = size * 8000000ll / mDurationUs; // in bits/sec
633 *bitrate = mBitrate;
637 *bitrate = 0
644 int64_t bitrate; local
711 int64_t bitrate; local
    [all...]
OggExtractor.cpp 73 // Returns an approximate bitrate in bits per second.
314 // Perform approximate seeking based on avg. bitrate.
633 // we can only approximate using avg. bitrate if seeking to
725 ALOGV("lower-bitrate = %ld", mVi.bitrate_lower);
726 ALOGV("upper-bitrate = %ld", mVi.bitrate_upper);
727 ALOGV("nominal-bitrate = %ld", mVi.bitrate_nominal);
728 ALOGV("window-bitrate = %ld", mVi.bitrate_window);
OMXCodec.cpp 493 int32_t bitRate = 0;
495 CHECK(meta->findInt32(kKeyBitRate, &bitRate));
498 setAMRFormat(false /* isWAMR */, bitRate);
500 setAMRFormat(true /* isWAMR */, bitRate);
515 status_t err = setAACFormat(numChannels, sampleRate, bitRate, aacProfile, isADTS);
783 int32_t width, height, frameRate, bitRate, stride, sliceHeight;
787 success = success && meta->findInt32(kKeyBitRate, &bitRate);
857 video_def->nBitrate = bitRate; // Q16 format
934 status_t OMXCodec::setupBitRate(int32_t bitRate) {
945 bitrateType.nTargetBitrate = bitRate;
    [all...]
  /external/chromium_org/third_party/opus/src/src/
opus_demo.c 55 fprintf(stderr, "-cbr : enable constant bitrate; default: variable bitrate\n" );
56 fprintf(stderr, "-cvbr : enable constrained variable bitrate; default: unconstrained\n" );
    [all...]
  /external/aac/libAACenc/src/
bandwidth.cpp 277 } /* within bitrate range */
287 INT bitrate,
295 INT chanBitRate = bitrate/cm->nChannels;
  /external/chromium_org/chrome/browser/extensions/api/serial/
serial_api.cc 25 // It's a fool's errand to come up with a default bitrate, because we don't get
27 // implemented auto-bitrate detection (rare), if we pick the wrong rate, then
116 SetDefaultScopedPtrValue(options->bitrate, kDefaultBitrate);
  /external/chromium_org/third_party/libjingle/source/talk/media/base/
codec_unittest.cc 105 // Test a codec with a dynamic payload type, and auto bitrate.
107 // Use default bitrate.
110 // Use explicit bitrate.
  /external/chromium_org/third_party/opus/src/include/
opus.h 116 * opus_encoder_ctl(enc, OPUS_SET_BITRATE(bitrate));
123 * @arg bitrate is in bits per second (b/s)
140 * Do not use max_packet to control VBR target bitrate, instead use the #OPUS_SET_BITRATE CTL.</li>
179 * @ref OPUS_APPLICATION_VOIP gives best quality at a given bitrate for voice
186 * @ref OPUS_APPLICATION_AUDIO gives best quality at a given bitrate for most
204 * can switch to a lower audio bandwidth or number of channels if the bitrate
256 * the instant bitrate, but should
257 * not be used as the only bitrate
259 * control the bitrate.
297 * the instant bitrate, but shoul
    [all...]
  /external/libvpx/libvpx/
vp9_spatial_scalable_encoder.c 47 "b", "target-bitrate", 1, "encoding bitrate, in kilobits per second");
289 "num: %d, den: %d, bitrate: %d,\n"
  /frameworks/av/media/libmediaplayerservice/
StagefrightRecorder.cpp 342 status_t StagefrightRecorder::setParamAudioEncodingBitRate(int32_t bitRate) {
343 ALOGV("setParamAudioEncodingBitRate: %d", bitRate);
344 if (bitRate <= 0) {
345 ALOGE("Invalid audio encoding bit rate: %d", bitRate);
353 mAudioBitRate = bitRate;
357 status_t StagefrightRecorder::setParamVideoEncodingBitRate(int32_t bitRate) {
358 ALOGV("setParamVideoEncodingBitRate: %d", bitRate);
359 if (bitRate <= 0) {
360 ALOGE("Invalid video encoding bit rate: %d", bitRate);
368 mVideoBitRate = bitRate;
    [all...]
  /frameworks/base/media/java/android/media/
MediaRecorder.java 595 * specified bit rate is applicable, and sometimes the passed bitRate will be clipped
599 * @param bitRate the audio encoding bit rate in bits per second.
601 public void setAudioEncodingBitRate(int bitRate) {
602 if (bitRate <= 0) {
605 setParameter("audio-param-encoding-bitrate=" + bitRate);
611 * specified bit rate is applicable, and sometimes the passed bitRate will be
615 * @param bitRate the video encoding bit rate in bits per second.
617 public void setVideoEncodingBitRate(int bitRate) {
618 if (bitRate <= 0)
    [all...]
  /bionic/libc/kernel/common/linux/can/
netlink.h 24 __u32 bitrate; member in struct:can_bittiming
  /external/aac/libAACenc/include/
aacenc_lib.h 148 -# Call aacEncoder_SetParam() for each parameter to be set. AOT, samplingrate, channelMode, bitrate and transport type are \ref encParams "mandatory".
240 fill level. The required sample bitrate (represented by the data type INT_PCM which is 16, 24 or 32
315 if the parameter was not set from extern. The bitrate depends on the number of effective
349 Based on sampling rate and chosen bitrate per channel a reasonable SBR configuration will be used.
352 Sampling Rate | Channel Bitrate | SBR | SBR Ratio
447 The minimum and maximum allowed bitrate depends on the Audio Object Type. For AAC-LC the minimum
448 bitrate is the bitrate that is required to write the most basic and minimal valid bitstream.
451 determines the maximum allowed bitrate for AAC-LC. For HE-AAC and HE-AAC v2 a library internal
454 A good working point in terms of audio quality, sampling rate and bitrate, is at 1 to 1.
    [all...]

Completed in 1363 milliseconds

1 2 3 4 5 6 78 91011>>