/cts/tests/tests/media/src/android/media/cts/ |
EncodeVirtualDisplayTest.java | 155 Thread th = new Thread(wrapper, "codec test"); 218 String codec = mcl.findEncoderForFormat(encoderFormat); local 219 if (codec == null) { 220 // Don't run the test if the codec isn't present. 225 encoder = MediaCodec.createByCodecName(codec); 422 // if the codec is meeting requirements).
|
NativeDecoderTest.java | 235 MediaCodec[] codec = new MediaCodec[numtracks]; local 243 codec[i] = MediaCodec.createDecoderByType(mime); 244 codec[i].configure(format[i], null, null, 0); 245 codec[i].start(); 246 inbuffers[i] = codec[i].getInputBuffers(); 247 outbuffers[i] = codec[i].getOutputBuffers(); 263 int bufidx = codec[t].dequeueInputBuffer(5000); 277 codec[t].queueInputBuffer(bufidx, 0, sampleSize, presentationTimeUs, 283 for (int tt = 0; tt < codec.length; tt++) { 285 // we ran out of samples without ever signaling EOS to the codec, [all...] |
/development/ndk/platforms/android-3/include/linux/ |
telephony.h | 34 codec, enumerator in enum:__anon1550
|
/development/ndk/platforms/android-L/include/linux/ |
telephony.h | 41 codec, enumerator in enum:__anon2451
|
/device/moto/shamu/camera/QCamera2/HAL/test/ |
qcamera_test.h | 332 sp<MediaCodec> codec; member in struct:qcamera::TestContext::ViVVid_t
|
/external/bluetooth/bluedroid/bta/ag/ |
bta_ag_int.h | 137 BTA_AG_SCO_CODEC_ST, /* sco codec negotiation */ 193 tBTA_AG_PEER_CODEC codec; member in struct:__anon5041 243 BTA_AG_SCO_MSBC_SETTINGS_T2 = 0, /* preferred/default when codec is mSBC */ 268 tBTA_AG_PEER_CODEC sco_codec; /* codec to be used for eSCO connection */ 269 tBTA_AG_PEER_CODEC inuse_codec; /* codec being used for the current SCO connection */ 270 BOOLEAN codec_updated; /* set to TRUE whenever the app updates codec type */ 273 TIMER_LIST_ENT cn_timer; /* codec negotiation timer */
|
/external/chromium_org/net/base/ |
mime_util.cc | 54 enum Codec { 120 CodecEntry() : codec(INVALID_CODEC), is_ambiguous(true) {} 121 CodecEntry(Codec c, bool ambiguous) : codec(c), is_ambiguous(ambiguous) {} 122 Codec codec; member in struct:net::MimeUtil::CodecEntry 129 // Returns IsSupported if all codec IDs in |codecs| are unambiguous 131 // at least one codec ID in |codecs| is ambiguous but all the codecs 133 // least one codec ID is not supported by the platform. 145 // Converts a codec ID into an Codec enum value and indicate 563 MimeUtil::Codec codec; member in struct:net::CodecIDMappings 612 Codec codec = INVALID_CODEC; local 690 Codec codec = INVALID_CODEC; local 856 Codec codec = INVALID_CODEC; local [all...] |
/external/chromium_org/third_party/libjingle/source/talk/media/base/ |
videoengine_unittest.h | 87 inline int TimeBetweenSend(const cricket::VideoCodec& codec) { 89 cricket::VideoFormat::FpsToInterval(codec.framerate) / 317 // This is the new way of constraining codec size, where we no longer maintain 565 bool SetOneCodec(const cricket::VideoCodec& codec) { 567 codecs.push_back(codec); 569 cricket::VideoFormat capture_format(codec.width, codec.height, 570 cricket::VideoFormat::FpsToInterval(codec.framerate), 591 bool SetSendStreamFormat(uint32 ssrc, const cricket::VideoCodec& codec) { 593 codec.width, codec.height 1312 cricket::VideoCodec codec = DefaultCodec(); local 1598 cricket::VideoCodec codec = DefaultCodec(); local [all...] |
/external/chromium_org/third_party/libjingle/source/talk/media/webrtc/ |
fakewebrtcvoiceengine.h | 35 #include "talk/media/base/codec.h" 398 webrtc::CodecInst codec; local 399 GetCodec(i, codec); 400 ch->recv_codecs.push_back(codec); 506 WEBRTC_FUNC(GetCodec, (int index, webrtc::CodecInst& codec)) { 511 codec.pltype = c.id; 512 rtc::strcpyn(codec.plname, sizeof(codec.plname), c.name.c_str()); 513 codec.plfreq = c.clockrate; 514 codec.pacsize = 0 [all...] |
webrtcvideoengine2_unittest.cc | 55 void VerifyCodecHasDefaultFeedbackParams(const cricket::VideoCodec& codec) { 56 EXPECT_TRUE(codec.HasFeedbackParam(cricket::FeedbackParam( 58 EXPECT_TRUE(codec.HasFeedbackParam(cricket::FeedbackParam( 60 EXPECT_TRUE(codec.HasFeedbackParam(cricket::FeedbackParam( 62 EXPECT_TRUE(codec.HasFeedbackParam(cricket::FeedbackParam( 153 void FakeVideoReceiveStream::GetCurrentReceiveCodec(webrtc::VideoCodec* codec) { 178 webrtc::VideoCodec codec; local 179 codec.minBitrate = 300; 180 codec.startBitrate = 800; 181 codec.maxBitrate = 1500 666 VideoCodec codec; local 1224 VideoCodec codec; local 1348 VideoCodec codec; local [all...] |
webrtcvoiceengine_unittest.cc | 73 engine, // codec 232 // |codec| is the codec under test. 236 void TestSendBandwidth(const cricket::AudioCodec& codec, 243 codecs.push_back(codec); 398 cricket::AudioCodec codec; local 407 codec = kIsacCodec; 408 codec.id = 127; 409 EXPECT_TRUE(engine_.FindWebRtcCodec(codec, &codec_inst)); 410 EXPECT_EQ(codec.id, codec_inst.pltype) 702 webrtc::CodecInst codec; local 714 webrtc::CodecInst codec; local [all...] |
/external/chromium_org/third_party/libjingle/source/talk/session/media/ |
mediasession.h | 37 #include "talk/media/base/codec.h" 320 void AddCodec(const C& codec) { 321 codecs_.push_back(codec); 323 void AddOrReplaceCodec(const C& codec) { 326 if (iter->id == codec.id) { 327 *iter = codec; 331 AddCodec(codec); 334 typename std::vector<C>::const_iterator codec; local 335 for (codec = codecs.begin(); codec != codecs.end(); ++codec) [all...] |
mediasessionclient.cc | 382 AudioCodec codec; local 383 if (ParseGingleAudioCodec(codec_elem, &codec)) { 384 codec.preference = preference--; 385 audio->AddCodec(codec); 416 VideoCodec codec; local 417 if (ParseGingleVideoCodec(codec_elem, &codec)) { 418 codec.preference = preference--; 419 video->AddCodec(codec); 503 bool ParseJingleAudioCodec(const buzz::XmlElement* elem, AudioCodec* codec) { 516 *codec = AudioCodec(id, name, clockrate, bitrate, channels, 0) 583 AudioCodec codec; local 625 VideoCodec codec; local 697 DataCodec codec; local [all...] |
mediasessionclient_unittest.cc | 47 using cricket::Codec; 1253 AudioCodec codec = AudioCodec(id, name, clockrate, bitrate, channels, 0); local 1284 VideoCodec codec = VideoCodec(id, name, width, height, framerate, 0); local 1299 DataCodec codec = DataCodec(id, name, 0); local 1654 cricket::DataCodec codec = DataCodecFromPayloadType(e); local 1894 cricket::AudioCodec codec = AudioCodecFromPayloadType(e); local 2043 VideoCodec codec = VideoCodecFromPayloadType(e); local 2068 cricket::AudioCodec codec = AudioCodecFromPayloadType(e); local 2229 cricket::AudioCodec codec = AudioCodecFromPayloadType(payload_type); local 2253 cricket::AudioCodec codec = AudioCodecFromPayloadType(e); local 2293 cricket::AudioCodec codec = AudioCodecFromPayloadType(e); local 2307 cricket::AudioCodec codec = AudioCodecFromPayloadType(e); local 2327 cricket::AudioCodec codec = AudioCodecFromPayloadType(e); local [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/include/pipe/ |
p_video_state.h | 111 enum pipe_video_codec codec; member in struct:pipe_quant_matrix 116 enum pipe_video_codec codec; member in struct:pipe_macroblock
|
/external/chromium_org/third_party/webrtc/modules/audio_coding/main/acm2/ |
audio_coding_module_impl.cc | 61 bool IsCodecRED(const CodecInst* codec) { 62 return (STR_CASE_CMP(codec->plname, "RED") == 0); 69 bool IsCodecCN(const CodecInst* codec) { 70 return (STR_CASE_CMP(codec->plname, "CN") == 0); 151 // Nullify send codec memory, set payload type and set codec name to 216 // Mirror index holds the address of the codec memory. 573 // codec for which GetRedPayload has a non-empty implementation. 654 // The codec was not iSAC => use current encoder output as redundant 702 // Initialize send codec 2062 webrtc::CodecInst codec; local 2107 webrtc::CodecInst codec; local [all...] |
/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/ |
neteq_impl.cc | 178 int NetEqImpl::RegisterPayloadType(enum NetEqDecoder codec, 181 LOG_API2(static_cast<int>(rtp_payload_type), codec); local 182 int ret = decoder_database_->RegisterPayload(rtp_payload_type, codec); 184 LOG_FERR2(LS_WARNING, RegisterPayload, rtp_payload_type, codec); 204 enum NetEqDecoder codec, 207 LOG_API2(static_cast<int>(rtp_payload_type), codec); local 213 const int sample_rate_hz = AudioDecoder::CodecSampleRateHz(codec); 214 int ret = decoder_database_->InsertExternal(rtp_payload_type, codec, 217 LOG_FERR2(LS_WARNING, InsertExternal, rtp_payload_type, codec); 370 // Set to wait for new codec [all...] |
/external/kernel-headers/original/uapi/linux/ |
telephony.h | 76 codec, enumerator in enum:__anon7149 171 * Codec Definitions
|
/external/mesa3d/src/gallium/include/pipe/ |
p_video_state.h | 111 enum pipe_video_codec codec; member in struct:pipe_quant_matrix 116 enum pipe_video_codec codec; member in struct:pipe_macroblock
|
/frameworks/av/media/libmedia/ |
MediaProfiles.cpp | 100 MediaProfiles::logVideoCodec(const MediaProfiles::VideoCodec& codec UNUSED) 102 ALOGV("video codec:"); 103 ALOGV("codec = %d", codec.mCodec); 104 ALOGV("bit rate: %d", codec.mBitRate); 105 ALOGV("frame width: %d", codec.mFrameWidth); 106 ALOGV("frame height: %d", codec.mFrameHeight); 107 ALOGV("frame rate: %d", codec.mFrameRate); 111 MediaProfiles::logAudioCodec(const MediaProfiles::AudioCodec& codec UNUSED) 113 ALOGV("audio codec:") 188 const int codec = findTagForName(sVideoEncoderNameMap, nMappings, atts[1]); local 210 const int codec = findTagForName(sAudioEncoderNameMap, nMappings, atts[1]); local 230 const int codec = findTagForName(sAudioDecoderNameMap, nMappings, atts[1]); local 246 const int codec = findTagForName(sVideoDecoderNameMap, nMappings, atts[1]); local 270 const int codec = findTagForName(sVideoEncoderNameMap, nMappings, atts[1]); local 294 const int codec = findTagForName(sAudioEncoderNameMap, nMappings, atts[1]); local 409 const int codec = findTagForName(sVideoEncoderNameMap, nMappings, atts[1]); local 534 VideoCodec *codec = NULL; local [all...] |
/frameworks/av/media/libstagefright/ |
MediaCodec.cpp | 117 sp<MediaCodec> codec = new MediaCodec(looper); local 119 const status_t ret = codec->init(mime, true /* nameIsType */, encoder); 123 return ret == OK ? codec : NULL; // NULL deallocates codec. 129 sp<MediaCodec> codec = new MediaCodec(looper); local 131 const status_t ret = codec->init(name, false /* nameIsType */, false /* encoder */); 135 return ret == OK ? codec : NULL; // NULL deallocates codec. 277 // To maintain backward-compatibility, do a reset() to put codec 737 ALOGE("Codec reported err %#x, actionCode %d, while in state %d" [all...] |
/frameworks/base/media/jni/ |
android_media_MediaCodec.cpp | 706 JNIEnv *env, jobject thiz, const sp<JMediaCodec> &codec) { 708 if (codec != NULL) { 709 codec->incStrong(thiz); 720 env->SetLongField(thiz, gFields.context, (jlong)codec.get()); 807 sp<JMediaCodec> codec = getMediaCodec(env, thiz); local 809 if (codec == NULL) { 814 status_t err = codec->setCallback(cb); 826 sp<JMediaCodec> codec = getMediaCodec(env, thiz); local 828 if (codec == NULL) { 860 err = codec->configure(format, bufferProducer, crypto, flags) 869 sp<JMediaCodec> codec = getMediaCodec(env, thiz); local 891 sp<JMediaCodec> codec = getMediaCodec(env, thiz); local 906 sp<JMediaCodec> codec = getMediaCodec(env, thiz); local 921 sp<JMediaCodec> codec = getMediaCodec(env, thiz); local 943 sp<JMediaCodec> codec = getMediaCodec(env, thiz); local 965 sp<JMediaCodec> codec = getMediaCodec(env, thiz); local 991 sp<JMediaCodec> codec = getMediaCodec(env, thiz); local 1127 sp<JMediaCodec> codec = getMediaCodec(env, thiz); local 1148 sp<JMediaCodec> codec = getMediaCodec(env, thiz); local 1171 sp<JMediaCodec> codec = getMediaCodec(env, thiz); local 1187 sp<JMediaCodec> codec = getMediaCodec(env, thiz); local 1202 sp<JMediaCodec> codec = getMediaCodec(env, thiz); local 1225 sp<JMediaCodec> codec = getMediaCodec(env, thiz); local 1248 sp<JMediaCodec> codec = getMediaCodec(env, thiz); local 1274 sp<JMediaCodec> codec = getMediaCodec(env, thiz); local 1300 sp<JMediaCodec> codec = getMediaCodec(env, thiz); local 1326 sp<JMediaCodec> codec = getMediaCodec(env, thiz); local 1349 sp<JMediaCodec> codec = getMediaCodec(env, thiz); local 1368 sp<JMediaCodec> codec = getMediaCodec(env, thiz); local 1473 sp<JMediaCodec> codec = new JMediaCodec(env, thiz, tmp, nameIsType, encoder); local [all...] |
/frameworks/opt/net/voip/src/jni/rtp/ |
AudioGroup.cpp | 100 AudioCodec *codec, int sampleRate, int sampleCount, 166 AudioCodec *codec, int sampleRate, int sampleCount, 202 if (codec) { 204 mCodec = codec; 222 (codec ? codec->name : "RAW"), mSampleRate, mInterval, mMode); 943 AudioCodec *codec = NULL; local 969 // Create audio codec. 974 codec = newAudioCodec(codecName); 975 int sampleCount = (codec ? codec->set(sampleRate, codecSpec) : -1) [all...] |
/hardware/qcom/audio/legacy/libalsa-intf/ |
alsa_audio.h | 266 struct snd_codec codec; member in struct:snd_compr_params
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/linux/ |
telephony.h | 76 codec, enumerator in enum:__anon26098 171 * Codec Definitions
|