Searched defs:bitRate (Results 1 - 25 of 38) sorted by relevance

12

/external/aac/libMpegTPEnc/src/
H A Dtpenc_adif.h102 INT bitRate; member in struct:__anon182
/external/chromium_org/third_party/webrtc/modules/video_coding/codecs/test_framework/
H A Dnormal_test.cc42 uint32_t bitRate, unsigned int testNo)
44 CodecTest(name, description, bitRate),
41 NormalTest(std::string name, std::string description, uint32_t bitRate, unsigned int testNo) argument
H A Dbenchmark.cc72 const int bitRate[] = {50, 100, 200, 300, 400, 500, 600, 1000}; local
79 const int nBitrates = sizeof(bitRate)/sizeof(*bitRate);
133 _bitRate = (bitRate[k]);
H A Dtest.cc39 uint32_t bitRate)
41 _bitRate(bitRate),
93 uint32_t bitRate /*=0*/)
95 if (bitRate > 0)
97 _bitRate = bitRate;
38 CodecTest(std::string name, std::string description, uint32_t bitRate) argument
H A Dnormal_async_test.cc45 NormalAsyncTest::NormalAsyncTest(uint32_t bitRate) argument
48 bitRate,
86 uint32_t bitRate, unsigned int testNo)
88 NormalTest(name, description, bitRate, testNo),
106 uint32_t bitRate, unsigned int testNo,
109 NormalTest(name, description, bitRate, testNo),
85 NormalAsyncTest(std::string name, std::string description, uint32_t bitRate, unsigned int testNo) argument
105 NormalAsyncTest(std::string name, std::string description, uint32_t bitRate, unsigned int testNo, unsigned int rttFrames) argument
H A Dunit_test.cc179 UnitTest::CodecSpecific_SetBitrate(uint32_t bitRate, argument
182 return _encoder->SetRates(bitRate, _inst.maxFramerate);
750 const int bitRate[] = {100, 500}; local
751 const int nBitrates = sizeof(bitRate)/sizeof(*bitRate);
756 _bitRate = bitRate[i];
/external/aac/libAACenc/src/
H A Dpnsparam.cpp188 int FDKaacEnc_lookUpPnsUse (int bitRate, int sampleRate, int numChan, const int isLC) { argument
203 if(((ULONG)bitRate >= levelTable[i].brFrom) &&
204 ((ULONG)bitRate <= levelTable[i].brTo) )
241 INT bitRate,
267 hUsePns = FDKaacEnc_lookUpPnsUse (bitRate, sampleRate, numChan, isLC);
240 FDKaacEnc_GetPnsParam(NOISEPARAMS *np, INT bitRate, INT sampleRate, INT sfbCnt, const INT *sfbOffset, INT *usePns, INT numChan, const int isLC) argument
H A Daacenc_pns.cpp133 INT bitRate,
145 bitRate,
132 FDKaacEnc_InitPnsConfiguration(PNS_CONFIG *pnsConf, INT bitRate, INT sampleRate, INT usePns, INT sfbCnt, const INT *sfbOffset, const INT numChan, const INT isLC) argument
H A Daacenc.cpp110 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 >
116 FDKaacEnc_LimitBitrate( HANDLE_TRANSPORTENC hTpEnc, INT coreSamplingRate, INT frameLength, INT nChannels, INT nChannelsEff, INT bitRate, INT averageBits, INT *pAverageBitsPerFrame, INT bitrateMode, INT nSubFrames ) argument
999 FDKaacEnc_InitCheckAncillary(INT bitRate, INT framelength, INT ancillaryRate, INT *ancillaryBitsPerFrame, INT sampleRate) argument
[all...]
H A Daacenc.h184 INT bitRate; /* encoder bit rate in bits/sec */ member in struct:AACENC_CONFIG
232 * \param bitRate the initial bit rate value for which the closest valid bit rate value is searched for
237 * \return a valid bit rate value as close as possible or identical to bitRate
245 INT bitRate,
H A Dpsy_main.cpp304 INT bitRate,
335 ErrorStatus = FDKaacEnc_InitPsyConfiguration(bitRate/channelsEff, sampleRate, bandwidth, LONG_WINDOW, hPsy->granuleLength, useIS, &(hPsy->psyConf[0]), filterBank);
340 (bitRate*tnsChannels)/channelsEff,
355 ErrorStatus = FDKaacEnc_InitPsyConfiguration(bitRate/channelsEff, sampleRate, bandwidth, SHORT_WINDOW, hPsy->granuleLength, useIS, &hPsy->psyConf[1], filterBank);
360 (bitRate*tnsChannels)/channelsEff,
393 bitRate/channelsEff,
404 bitRate/channelsEff,
299 FDKaacEnc_psyMainInit(PSY_INTERNAL *hPsy, AUDIO_OBJECT_TYPE audioObjectType, CHANNEL_MAPPING *cm, INT sampleRate, INT granuleLength, INT bitRate, INT tnsMask, INT bandwidth, INT usePns, INT useIS, UINT syntaxFlags, ULONG initFlags) argument
/external/chromium_org/third_party/opus/src/silk/
H A Dcontrol.h69 opus_int32 bitRate; member in struct:__anon14710
/external/chromium_org/third_party/webrtc/modules/video_coding/utility/
H A Dframe_dropper.cc336 FrameDropper::SetRates(float bitRate, float incoming_frame_rate) argument
339 _accumulatorMax = bitRate * _windowSize; // bitRate * windowSize (in seconds)
340 if (_targetBitRate > 0.0f && bitRate < _targetBitRate && _accumulator > _accumulatorMax)
343 _accumulator = bitRate / _targetBitRate * _accumulator;
345 _targetBitRate = bitRate;
/external/libopus/silk/
H A Dcontrol.h69 opus_int32 bitRate; member in struct:__anon24541
/external/chromium_org/third_party/webrtc/modules/video_coding/main/test/
H A Dgeneric_codec_test.cc278 const float bitRate[] = {100, 400, 600, 1000, 2000}; local
279 const float nBitrates = sizeof(bitRate)/sizeof(*bitRate);
303 _bitRate = static_cast<float>(bitRate[i]);
H A Dmt_rx_tx_test.cc115 float bitRate = args.bitRate; local
223 sendCodec.startBitrate = (int) bitRate;
262 vcm->SetChannelParameters(static_cast<uint32_t>(1000 * bitRate),
H A Dtest_util.h37 int bitRate; member in class:CmdArgs
H A Dtest_callbacks.cc421 SendStatsTest::SendStatistics(const uint32_t bitRate, argument
425 TEST(bitRate > _bitrate / 2 && bitRate < 3 * _bitrate / 2);
426 printf("VCM 1 sec: Bit rate: %u\tFrame rate: %u\n", bitRate, frameRate);
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/apple/
H A DAppleLosslessSpecificBox.java31 private long bitRate; // 32bit field in class:AppleLosslessSpecificBox
107 return bitRate;
110 public void setBitRate(int bitRate) { argument
111 this.bitRate = bitRate;
135 bitRate = IsoTypeReader.readUInt32(content);
151 IsoTypeWriter.writeUInt32(byteBuffer, bitRate);
/external/chromium_org/third_party/webrtc/modules/video_coding/main/source/
H A Dvideo_sender.cc89 uint32_t bitRate; local
93 bitRate = _mediaOpt.SentBitRate();
96 _sendStatsCallback->SendStatistics(bitRate, frameRate);
H A Dmedia_opt_util.h51 VCMProtectionParameters() : rtt(0), lossPr(0.0f), bitRate(0.0f),
60 float bitRate; member in struct:webrtc::media_optimization::VCMProtectionParameters
289 // - bitRate : The current target bit rate in kbits/s
290 void UpdateBitRate(float bitRate);
H A Dvideo_receiver.cc81 uint32_t bitRate; local
83 _receiver.ReceiveStatistics(&bitRate, &frameRate);
84 _receiveStatsCallback->OnReceiveStatisticsUpdate(bitRate, frameRate);
/external/aac/libAACdec/include/
H A Daacdecoder_lib.h549 INT bitRate; /*!< Instantaneous bit rate. */ member in struct:__anon3
/external/aac/libSBRenc/include/
H A Dsbr_encoder.h114 INT bitRate; member in struct:__anon229
256 INT bitRate; member in struct:__anon233
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);
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/main/source/
H A Dbandwidth_estimator.c746 int32_t* bitRate)
751 *bitRate = MIN_ISAC_BW;
755 *bitRate = MAX_ISAC_BW;
759 *bitRate = (int32_t)(bwest_str->send_bw_avg);
744 WebRtcIsac_GetUplinkBandwidth( const BwEstimatorstr* bwest_str, int32_t* bitRate) argument

Completed in 333 milliseconds

12