HomeSort by relevance Sort by last modified time
    Searched refs:bitRate (Results 1 - 25 of 132) sorted by null

1 2 3 4 5 6

  /cts/suite/pts/deviceTests/videoperf/src/com/android/pts/videoperf/
CodecInfo.java 82 int bitRate = 0;
98 bitRate = 4000000;
104 bitRate = 4000000;
110 bitRate = 10000000;
116 bitRate = 14000000;
122 bitRate = 20000000;
128 bitRate = 20000000;
134 bitRate = 50000000;
140 bitRate = 50000000;
146 bitRate = 135000000
    [all...]
  /external/aac/libAACenc/src/
pnsparam.h 87 contents/description: PNS parameters depending on bitrate and bandwidth
128 int FDKaacEnc_lookUpPnsUse (int bitRate, int sampleRate, int numChan, const int isLC);
133 INT bitRate,
aacenc.cpp 110 static AAC_ENCODER_ERROR FDKaacEnc_InitCheckAncillary(INT bitRate,
122 INT bitRate,
138 prevBitRate = bitRate;
139 averageBitsPerFrame = (bitRate*(frameLength>>shift)) / (coreSamplingRate>>shift) / nSubFrames;
152 bitRate = FDKmax(bitRate, ((((40 * nChannels) + transportBits) * (coreSamplingRate)) / frameLength) );
153 FDK_ASSERT(bitRate >= 0);
155 bitRate = FDKmin(bitRate, ((nChannelsEff * MIN_BUFSIZE_PER_EFF_CHAN)*(coreSamplingRate>>shift)) / (frameLength>>shift)) ;
156 FDK_ASSERT(bitRate >= 0)
190 INT bitrate = 0; local
    [all...]
pnsparam.cpp 87 contents/description: PNS parameters depending on bitrate and bandwidth
188 int FDKaacEnc_lookUpPnsUse (int bitRate, int sampleRate, int numChan, const int isLC) {
203 if(((ULONG)bitRate >= levelTable[i].brFrom) &&
204 ((ULONG)bitRate <= levelTable[i].brTo) )
233 description: Gets PNS parameters depending on bitrate and bandwidth
235 input: Noiseparams struct, bitrate, sampling rate,
241 INT bitRate,
267 hUsePns = FDKaacEnc_lookUpPnsUse (bitRate, sampleRate, numChan, isLC);
aacenc_lib.cpp 241 ULONG bitrateRange; /*!< Lower bitrate range for config entry. */
277 * This function finds default SBR configuration for ELD based on sampling rate and channel bitrate.
282 * \param totalBitrate Overall bitrate.
479 cc->bitRate = hAacConfig->bitRate;
581 config->userBitrate = hAacConfig->bitRate;
621 void aacEncDistributeSbrBits(CHANNEL_MAPPING *channelMapping, SBR_ELEMENT_INFO *sbrElInfo, INT bitRate)
623 INT codebits = bitRate;
631 sbrElInfo[el].bitRate = (INT)(fMultNorm(channelMapping->elInfo[el].relativeBits, (FIXP_DBL)bitRate));
863 INT bitrate = FDKaacEnc_GetChannelModeConfiguration(hAacConfig->channelMode)->nChannelsEff * hAacConfig->sampleRate; local
    [all...]
aacenc.h 121 AAC_ENC_UNSUPPORTED_BITRATE = 0x3020, /*!< The chosen bitrate is not supported. */
123 AAC_ENC_UNSUPPORTED_ANC_BITRATE = 0x3040, /*!< Unsupported ancillay bitrate. */
161 AACENC_BR_MODE_INVALID = -1, /*!< Invalid bitrate mode. */
162 AACENC_BR_MODE_CBR = 0, /*!< Constant bitrate mode. */
163 AACENC_BR_MODE_VBR_1 = 1, /*!< Variable bitrate mode, about 32 kbps/channel. */
164 AACENC_BR_MODE_VBR_2 = 2, /*!< Variable bitrate mode, about 40 kbps/channel. */
165 AACENC_BR_MODE_VBR_3 = 3, /*!< Variable bitrate mode, about 48-56 kbps/channel. */
166 AACENC_BR_MODE_VBR_4 = 4, /*!< Variable bitrate mode, about 64 kbps/channel. */
167 AACENC_BR_MODE_VBR_5 = 5, /*!< Variable bitrate mode, about 80-96 kbps/channel. */
184 INT bitRate; /* encoder bit rate in bits/sec *
    [all...]
pns_func.h 102 INT bitRate,
psy_main.h 153 INT bitRate,
  /external/aac/libMpegTPEnc/src/
tpenc_adif.h 102 INT bitRate;
  /frameworks/av/media/libstagefright/codecs/common/include/
voAAC.h 46 int bitRate; /*! encoder bit rate in bits/sec */
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/apple/
AppleLosslessSpecificBox.java 20 bitrate? 32bit samplerate
31 private long bitRate; // 32bit
107 return bitRate;
110 public void setBitRate(int bitRate) {
111 this.bitRate = bitRate;
135 bitRate = IsoTypeReader.readUInt32(content);
151 IsoTypeWriter.writeUInt32(byteBuffer, bitRate);
  /frameworks/av/media/libstagefright/codecs/aacenc/src/
aacenc.c 139 config.bitRate = 128000;
317 int ret, i, bitrate, tmp; local
331 config.bitRate = pAAC_param->bitRate;
359 /* check the bitrate */
360 if(config.bitRate!=0 && ((config.bitRate/config.nChannelsOut < 4000) ||
361 (config.bitRate/config.nChannelsOut > 160000) ||
362 (config.bitRate > config.sampleRate*6*config.nChannelsOut)))
364 config.bitRate = 640*config.sampleRate/tmp*config.nChannelsOut
    [all...]
aacenc_core.c 46 config->bitRate = 128000;
91 config.bitRate,
111 qcInit.averageBits = (Word16) ((config.bitRate * FRAME_LEN_LONG) / config.sampleRate);
121 qcInit.bitrate = config.bitRate;
129 hAacEnc->bseInit.bitrate = config.bitRate;
174 /* adjust bitrate and frame length */
176 aacEnc->config.bitRate,
  /frameworks/av/media/libstagefright/codecs/aacenc/inc/
tns_param.h 48 Word32 bitRate, Word16 channels, Word16 blockType);
aacenc_core.h 41 Word32 bitRate; /* encoder bit rate in bits/sec */
block_switch.h 59 const Word32 bitRate, const Word16 nChannels);
qc_main.h 61 Word32 bitRate,
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/
MediaRecorderStressTestRunner.java 70 String bitRate = (String) icicle.get("bit_rate");
92 if (bitRate != null) {
93 mBitRate = Integer.parseInt(bitRate);
  /external/chromium_org/third_party/opus/src/silk/
control.h 68 /* I: Bitrate during active speech in bits/second; internally limited */
69 opus_int32 bitRate;
83 /* I: Flag to use constant bitrate */
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowMediaRecorder.java 64 public void setAudioEncodingBitRate(int bitRate) {
65 audioBitRate = bitRate;
129 public void setVideoEncodingBitRate(int bitRate) {
130 videoBitRate = bitRate;
  /frameworks/av/media/libstagefright/codecs/aacenc/SampleCode/
AAC_E_SAMPLES.c 38 "voAACEncTest -if <inputfile.pcm> -of <outputfile.aac> -sr <samplerate> -ch <channel> -br <bitrate> -adts <adts> \n"
43 "-br encoded aac bitrate, default 64000 * (samplerate/100)*channel/441(480)\n"
51 // bitRate/nChannels > 8000
52 // bitRate/nChannels < 160000
53 // bitRate/nChannels < sampleRate*6
55 param->bitRate = 0;
96 param->bitRate = atoi(*argv);
113 if(param->bitRate == 0)
118 param->bitRate = 640*param->nChannels*param->sampleRate/scale;
  /frameworks/av/media/libstagefright/codecs/mp3dec/include/
pvmp3decoder_api.h 200 * This value is the bitrate in units of bits/second. IT
205 int32 bitRate;
223 * bitrate. For debugging purposes only, as it will overflow for very long clips
  /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...]
  /cts/tests/tests/media/src/android/media/cts/
MediaCodecTest.java 294 int bitRate = 0;
308 bitRate = 4000000;
314 bitRate = 4000000;
320 bitRate = 10000000;
326 bitRate = 14000000;
332 bitRate = 20000000;
339 bitRate = 20000000;
346 info.mBitRate = bitRate;
347 Log.i(TAG, "AVC Level 0x" + Integer.toHexString(highestLevel) + " bit rate " + bitRate +
  /external/aac/libSBRenc/include/
sbr_encoder.h 114 INT bitRate;
256 INT bitRate;
285 * \brief Get closest working bitrate to specified desired
286 * bitrate for a single SBR element.
287 * \param bitRate The desired target bit rate
291 * \return Closest working bit rate to bitRate value
293 UINT sbrEncoder_LimitBitRate(UINT bitRate, UINT numChannels, UINT coreSampleRate, AUDIO_OBJECT_TYPE aot);
390 * \brief SBR encoder bitrate estimation.
392 * \return Estimated bitrate.

Completed in 480 milliseconds

1 2 3 4 5 6