HomeSort by relevance Sort by last modified time
    Searched full:bitrate (Results 26 - 50 of 164) sorted by null

12 3 4 5 6 7

  /frameworks/base/media/libstagefright/codecs/aacenc/inc/
tns.h 36 typedef struct{ /*stuff that is tabulated dependent on bitrate etc. */
qc_data.h 73 Word32 bitrate; member in struct:QC_INIT
  /frameworks/base/media/libstagefright/codecs/common/include/
voAAC.h 46 int bitRate; /*! encoder bit rate in bits/sec */
  /frameworks/base/include/media/stagefright/
OMXCodec.h 176 void setAMRFormat(bool isWAMR, int32_t bitRate);
177 void setAACFormat(int32_t numChannels, int32_t sampleRate, int32_t bitRate);
187 status_t setupBitRate(int32_t bitRate);
MPEG4Writer.h 92 int64_t estimateMoovBoxSize(int32_t bitRate);
  /frameworks/base/media/java/android/media/
MediaRecorder.java 449 * specified bit rate is applicable, and sometimes the passed bitRate will be clipped
453 * @param bitRate the audio encoding bit rate in bits per second.
455 public void setAudioEncodingBitRate(int bitRate) {
456 if (bitRate <= 0) {
459 setParameter(String.format("audio-param-encoding-bitrate=%d", bitRate));
465 * specified bit rate is applicable, and sometimes the passed bitRate will be
469 * @param bitRate the video encoding bit rate in bits per second.
471 public void setVideoEncodingBitRate(int bitRate) {
472 if (bitRate <= 0)
    [all...]
  /frameworks/base/media/libstagefright/codecs/amrnb/enc/
AMRNBEncoder.cpp 92 int32_t bitrate; local
93 if (params && params->findInt32(kKeyBitRate, &bitrate)) {
94 mMode = PickModeFromBitrate(bitrate);
  /frameworks/base/media/libstagefright/codecs/avc/enc/src/
avcenc_int.h 170 int bitrate; /* bitrate for current frame */ member in struct:tagMultiPass
196 /* For target bitrate or framerate update */
197 OsclFloat target_bits_per_frame; /* = C = bitrate/framerate */
219 /* bitrate-robustness tradeoff */
240 int32 bitRate; /* target bit rate for the overall clip in bits/second*/
313 int max_BitVariance_num; /* the number of the maximum bit variance within the given buffer with the unit of 10% of bitrate/framerate*/
rate_control.cpp 219 rateCtrl->bitsPerFrame = (int32)(rateCtrl->bitRate / rateCtrl->frame_rate);
243 /* Setting the bitrate and framerate */
244 rateCtrl->pMP->bitrate = rateCtrl->bitRate;
246 rateCtrl->pMP->target_bits_per_frame = rateCtrl->pMP->bitrate / rateCtrl->pMP->framerate;
249 bpp = 1.0 * rateCtrl->bitRate / (rateCtrl->frame_rate * (video->PicSizeInMbs << 8));
380 pMP->bitrate = rateCtrl->bitRate; /* calculated in RCVopQPSetting */
609 /* Second, set another upper bound for current bit allocation: 4-5*bitrate/framerate */
822 (pMP->bitrate / (pMP->framerate + 0.0001) + 0.0001) / 0.1)
    [all...]
  /hardware/qcom/media/mm-video/vidc/venc/test/
venc_test.cpp 123 /*max mb per frame, max mb per sec, max bitrate, level, profile*/
145 /*max mb per frame, max mb per sec, max bitrate, level, profile*/
173 /*max mb per frame, max mb per sec, max bitrate, level, profile*/
396 //validate the ht,width,fps,bitrate and set the appropriate profile and level
537 OMX_VIDEO_PARAM_BITRATETYPE bitrate; // OMX_IndexParamVideoBitrate local
538 bitrate.nPortIndex = (OMX_U32)PORT_INDEX_OUT;
541 &bitrate);
544 bitrate.eControlRate = m_sProfile.eControlRate;
545 bitrate.nTargetBitrate = m_sProfile.nBitrate;
548 &bitrate);
    [all...]
  /frameworks/base/media/libstagefright/codecs/m4v_h263/enc/src/
mp4lib_int.h 182 Int LayerBitRate[4]; /* Encoded BitRate */
183 Int LayerMaxBitRate[4]; /* Maximum Encoded BitRate */
269 Int bitrate; /* bitrate for current frame */ member in struct:tagMultiPass
295 /* For target bitrate or framerate update */
296 float target_bits_per_frame; /* = C = bitrate/framerate */
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:__anon9411
  /external/libnfc-nxp/src/
phHciNfc_SWP.h 286 * \brief To get the bitrate
288 * This function reads the bitrate
310 * This function reads the bitrate
  /frameworks/base/media/libmediaplayerservice/
StagefrightRecorder.cpp 313 status_t StagefrightRecorder::setParamAudioEncodingBitRate(int32_t bitRate) {
314 LOGV("setParamAudioEncodingBitRate: %d", bitRate);
315 if (bitRate <= 0) {
316 LOGE("Invalid audio encoding bit rate: %d", bitRate);
324 mAudioBitRate = bitRate;
328 status_t StagefrightRecorder::setParamVideoEncodingBitRate(int32_t bitRate) {
329 LOGV("setParamVideoEncodingBitRate: %d", bitRate);
330 if (bitRate <= 0) {
331 LOGE("Invalid video encoding bit rate: %d", bitRate);
339 mVideoBitRate = bitRate;
    [all...]
  /external/iproute2/include/linux/can/
netlink.h 25 __u32 bitrate; /* Bit-rate in bits/second */ member in struct:can_bittiming
  /frameworks/base/media/libstagefright/
AwesomePlayer.cpp 337 // Attempt to approximate overall stream bitrate by summing all
338 // tracks' individual bitrates, if not all of them advertise bitrate,
346 int32_t bitrate; local
347 if (!meta->findInt32(kKeyBitRate, &bitrate)) {
352 totalBitRate += bitrate;
511 bool AwesomePlayer::getBitrate(int64_t *bitrate) {
515 *bitrate = size * 8000000ll / mDurationUs; // in bits/sec
520 *bitrate = mBitrate;
524 *bitrate = 0;
531 int64_t bitrate; local
563 int64_t bitrate; local
    [all...]
OMXCodec.cpp 636 int32_t bitRate = 0;
638 CHECK(meta->findInt32(kKeyBitRate, &bitRate));
641 setAMRFormat(false /* isWAMR */, bitRate);
644 setAMRFormat(true /* isWAMR */, bitRate);
651 setAACFormat(numChannels, sampleRate, bitRate);
915 int32_t width, height, frameRate, bitRate, stride, sliceHeight;
919 success = success && meta->findInt32(kKeyBitRate, &bitRate);
989 video_def->nBitrate = bitRate; // Q16 format
    [all...]
  /frameworks/base/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;
    [all...]
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/base/media/libstagefright/include/
AwesomePlayer.h 155 int64_t mBitrate; // total bitrate of the file (in bps) or -1 if unknown.
259 bool getBitrate(int64_t *bitrate);
  /bionic/libc/kernel/common/linux/
msm_q6venc.h 144 unsigned int bitrate; member in struct:venc_common_config
  /bootable/bootloader/legacy/arch_msm7k/
uart.c 77 uwr(0x7BF, UART_IPR); /* stale timeout = 630 * bitrate */
  /external/libvpx/vp8/common/
onyxc_int.h 192 double bitrate; member in struct:VP8Common
  /external/speex/include/speex/
speex_header.h 68 spx_int32_t bitrate; /**< Bit-rate used */ member in struct:SpeexHeader
  /frameworks/base/media/libstagefright/codecs/amrnb/common/
pvgsmamrdecoderinterface.h 123 * This value is the bitrate in units of bits/second. IT
128 int32_t bitRate;

Completed in 651 milliseconds

12 3 4 5 6 7