/device/samsung/tuna/ |
media_profiles.xml | 31 <!ATTLIST Video bitRate CDATA #REQUIRED> 37 <!ATTLIST Audio bitRate CDATA #REQUIRED> 94 bitRate="128000" 99 bitRate="12200" 106 bitRate="1200000" 111 bitRate="96000" 118 bitRate="5000000" 123 bitRate="96000" 130 bitRate="8000000" 135 bitRate="96000 [all...] |
/device/moto/wingray/ |
media_profiles.xml | 30 <!ATTLIST Video bitRate CDATA #REQUIRED> 36 <!ATTLIST Audio bitRate CDATA #REQUIRED> 95 bitRate="384000" 101 bitRate="12200" 108 bitRate="1536000" 114 bitRate="12200" 121 bitRate="4000000" 127 bitRate="96000" 134 bitRate="8000000" 140 bitRate="96000 [all...] |
/development/tools/emulator/system/camera/ |
media_profiles.xml | 31 <!ATTLIST Video bitRate CDATA #REQUIRED> 37 <!ATTLIST Audio bitRate CDATA #REQUIRED> 94 bitRate="128000" 99 bitRate="12200" 106 bitRate="192000" 112 bitRate="12200" 128 bitRate="128000" 133 bitRate="12200" 140 bitRate="192000" 146 bitRate="12200 [all...] |
/frameworks/base/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,
|
psy_configuration.c | 193 const Word32 bitrate, 203 if (bitrate > 22000) 278 static void initMinSnr(const Word32 bitrate, 296 pePerWindow = bits2pe(extract_l((bitrate * numLines) / samplerate)); 345 Word16 InitPsyConfigurationLong(Word32 bitrate, 388 bitrate, 411 initMinSnr(bitrate, 429 Word16 InitPsyConfigurationShort(Word32 bitrate, 470 bitrate, 495 initMinSnr(bitrate, [all...] |
qc_main.c | 60 static Word16 calcFrameLen(Word32 bitRate, 68 result = (FRAME_LEN_LONG >> 3) * bitRate; 89 static Word16 framePadding(Word32 bitRate, 98 difference = calcFrameLen( bitRate, 237 init->bitrate, 297 /*adjust thresholds for the desired bitrate */ 454 /* constant bitrate */ 462 /* variable bitrate */ 539 * to achieve a bitrate that demands a non byte aligned 545 Word32 bitRate, /* total bitrate * [all...] |
/external/chromium/third_party/libjingle/source/talk/session/phone/ |
codec.cc | 42 // If a nonzero bitrate is specified, it must match the actual bitrate, 50 (codec.bitrate == 0 || bitrate == -1 || bitrate == codec.bitrate) && 56 os << "AudioCodec[" << id << ":" << name << ":" << clockrate << ":" << bitrate
|
codec.h | 39 int bitrate; member in struct:cricket::AudioCodec 46 : id(pt), name(nm), clockrate(cr), bitrate(br), 50 AudioCodec() : id(0), clockrate(0), bitrate(0), channels(0), preference(0) {} 66 bitrate = c.bitrate; 76 bitrate == c.bitrate &&
|
/device/samsung/crespo/ |
media_profiles.xml | 31 <!ATTLIST Video bitRate CDATA #REQUIRED> 37 <!ATTLIST Audio bitRate CDATA #REQUIRED> 94 bitRate="3000000" 100 bitRate="96000" 107 bitRate="256000" 113 bitRate="12200" 121 bitRate="3000000" 128 bitRate="96000" 135 bitRate="256000" 141 bitRate="12200 [all...] |
media_profiles_korea.xml | 31 <!ATTLIST Video bitRate CDATA #REQUIRED> 37 <!ATTLIST Audio bitRate CDATA #REQUIRED> 84 bitRate="3000000" 90 bitRate="96000" 97 bitRate="256000" 103 bitRate="12200" 120 bitRate="1000000" 126 bitRate="96000" 133 bitRate="256000" 139 bitRate="12200 [all...] |
/device/ti/panda/ |
media_profiles.xml | 31 <!ATTLIST Video bitRate CDATA #REQUIRED> 37 <!ATTLIST Audio bitRate CDATA #REQUIRED> 84 bitRate="3000000" 90 bitRate="96000" 97 bitRate="256000" 103 bitRate="12200" 120 bitRate="1000000" 126 bitRate="96000" 133 bitRate="256000" 139 bitRate="12200 [all...] |
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/ |
isdnif.h | 38 #define ISDN_PROTO_L2_V11096 7 /* V.110 bitrate adaption 9600 Baud */ 39 #define ISDN_PROTO_L2_V11019 8 /* V.110 bitrate adaption 19200 Baud */ 40 #define ISDN_PROTO_L2_V11038 9 /* V.110 bitrate adaption 38400 Baud */
|
/frameworks/base/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/base/media/libstagefright/codecs/aacenc/inc/ |
tns_func.h | 31 Word16 InitTnsConfigurationLong(Word32 bitrate, 38 Word16 InitTnsConfigurationShort(Word32 bitrate,
|
bitenc.h | 34 Word32 bitrate; member in struct:BITSTREAMENCODER_INIT
|
psy_configuration.h | 94 Word16 InitPsyConfigurationLong(Word32 bitrate, 99 Word16 InitPsyConfigurationShort(Word32 bitrate,
|
/external/bluetooth/bluez/tools/ |
avinfo.c | 191 uint16_t bitrate; member in struct:mpeg_codec_cap 245 uint16_t bitrate; member in struct:mpeg_codec_cap 301 if (mpeg->bitrate & MPEG_BIT_RATE_FREE) 304 if (mpeg->bitrate & MPEG_BIT_RATE_32000) 306 if (mpeg->bitrate & MPEG_BIT_RATE_40000) 308 if (mpeg->bitrate & MPEG_BIT_RATE_48000) 310 if (mpeg->bitrate & MPEG_BIT_RATE_56000) 312 if (mpeg->bitrate & MPEG_BIT_RATE_64000) 314 if (mpeg->bitrate & MPEG_BIT_RATE_80000) 316 if (mpeg->bitrate & MPEG_BIT_RATE_96000 [all...] |
/external/iproute2/ip/ |
iplink_can.c | 26 "\t[ bitrate BITRATE [ sample-point SAMPLE-POINT] ] | \n" 39 "\tWhere: BITRATE := { 1..1000000 }\n" 105 if (matches(*argv, "bitrate") == 0) { 107 if (get_u32(&bt.bitrate, *argv, 0)) 108 invarg("invalid \"bitrate\" value\n", *argv); 179 if (bt.bitrate || bt.tq) 232 "bitrate %d sample-point %.3f ", 233 bt->bitrate, (float)bt->sample_point / 1000.);
|
/external/webkit/Source/WebCore/manual-tests/ |
video-waiting-seeking.html | 72 This test makes assumptions on the size of the input file, the bitrate 76 Source is assumed to be about 188k with a uniform bitrate, > 4
|
/frameworks/media/libvideoeditor/vss/common/inc/ |
M4SYS_Stream.h | 162 M4OSA_Int32 averageBitrate; /**< The average bitrate (in bit per second) of this stream. 163 The average bitrate is computed on the stream duration. 164 -1 value means either there is no average bitrate or no 165 average bitrate is provided.*/ 166 M4OSA_Int32 maxBitrate; /**< The maximum bitrate (in bit per second) of this stream. 167 The maximum bitrate is computed on a sliding window of 1 168 second. -1 value means either there is no max. bitrate or 169 no max. bitrate is provided.*/
|
/frameworks/base/media/libstagefright/ |
MP3Extractor.cpp | 43 // protection, bitrate, padding, private bits, mode, mode extension, 148 int sample_rate, num_channels, bitrate; local 151 &sample_rate, &num_channels, &bitrate)) { 288 int bitrate; local 290 header, &frame_size, &sample_rate, &num_channels, &bitrate); 311 mMeta->setInt32(kKeyBitRate, bitrate * 1000); 325 durationUs = 8000LL * (fileSize - mFirstFramePos) / bitrate; 431 int32_t bitrate; local 432 if (!mMeta->findInt32(kKeyBitRate, &bitrate)) { 433 // bitrate is in bits/sec 457 int bitrate; local [all...] |
/external/tremolo/Tremolo/ |
ivorbiscodec.h | 56 /* The below bitrate declarations are *hints*. 62 implies a VBR stream that averages the nominal bitrate. No hard 65 implies a VBR bitstream that obeys the bitrate limits. nominal
|
/frameworks/media/libvideoeditor/vss/inc/ |
M4VSS3GPP_InternalConfig.h | 54 av AU size = (av bitrate * 1024)/(sampling freq) 105 /** Macro to define the number of read AU to analyse the bitrate 107 the average bitrate. n is defined by this define.
|
/external/bluetooth/bluez/audio/ |
a2dp-codecs.h | 89 uint16_t bitrate; member in struct:__anon1515 111 uint16_t bitrate; member in struct:__anon1517
|