Searched refs:codec (Results 326 - 350 of 439) sorted by path

<<1112131415161718

/external/chromium_org/third_party/webrtc/video_engine/
H A Dvie_channel.cc256 LOG_F(LS_ERROR) << "Not a valid send codec " << video_codec.codecType;
441 // Register codec type with VCM, but do not register RED or ULPFEC.
1439 // Trigger a callback to the user if the incoming codec has changed.
1441 // The codec set by RegisterReceiveCodec might not be the size we're
1486 void ViEChannel::IncomingCodecChanged(const VideoCodec& codec) { argument
1488 receive_codec_ = codec;
H A Dvie_channel.h317 virtual void IncomingCodecChanged(const VideoCodec& codec);
487 // Current receive codec used for codec change callback.
H A Dvie_codec_impl.cc30 static void LogCodec(const VideoCodec& codec) { argument
31 LOG(LS_INFO) << "CodecType " << codec.codecType
32 << ", pl_type " << static_cast<int>(codec.plType)
33 << ", resolution " << codec.width
34 << " x " << codec.height
35 << ", start br " << codec.startBitrate
36 << ", min br " << codec.minBitrate
37 << ", max br " << codec.maxBitrate
38 << ", max fps " << static_cast<int>(codec.maxFramerate)
39 << ", max qp " << codec
[all...]
H A Dvie_encoder.cc299 // If the external encoder is the current send codec, use vcm internal
645 // The send codec must be registered to set correct MTU.
646 webrtc::VideoCodec codec; local
647 if (vcm_.SendCodec(&codec) == 0) {
655 codec.startBitrate = (current_bitrate_bps + 500) / 1000;
656 if (vcm_.RegisterSendCodec(&codec, number_of_cores_, max_pay_load) != 0) {
805 VideoCodec codec; local
806 if (vcm_.SendCodec(&codec) != 0)
809 if (codec.numberOfSimulcastStreams > 0 &&
810 ssrcs.size() != codec
[all...]
/external/chromium_org/third_party/webrtc/voice_engine/
H A Dchannel.cc384 // Register the new codec to the ACM
389 "Channel::OnInitializeDecoder() invalid codec ("
742 // This is not needed on sending side, since the codec will
1128 CodecInst codec; local
1134 if ((audio_coding_->Codec(idx, &codec) == -1) ||
1136 codec.plname,
1137 codec.pltype,
1138 codec.plfreq,
1139 codec.channels,
1140 (codec
1431 GetSendCodec(CodecInst& codec) argument
1437 GetRecCodec(CodecInst& codec) argument
1443 SetSendCodec(const CodecInst& codec) argument
1535 SetRecPayloadType(const CodecInst& codec) argument
1627 GetRecPayloadType(CodecInst& codec) argument
1656 CodecInst codec; local
2662 CodecInst codec = {}; local
3673 CodecInst codec; local
4329 CodecInst codec; local
4367 SetSecondarySendCodec(const CodecInst& codec, int red_payload_type) argument
4398 GetSecondarySendCodec(CodecInst* codec) argument
4410 CodecInst codec; local
[all...]
H A Dchannel.h201 int32_t GetSendCodec(CodecInst& codec);
202 int32_t GetRecCodec(CodecInst& codec);
203 int32_t SetSendCodec(const CodecInst& codec);
206 int32_t SetRecPayloadType(const CodecInst& codec);
207 int32_t GetRecPayloadType(CodecInst& codec);
212 int SetSecondarySendCodec(const CodecInst& codec, int red_payload_type);
214 int GetSecondarySendCodec(CodecInst* codec);
533 // Downsamples to the codec rate if necessary.
H A Dtransmit_mixer.cc311 CodecInst codec; local
312 channel->GetSendCodec(codec);
313 *max_sample_rate = std::max(*max_sample_rate, codec.plfreq);
314 *max_channels = std::max(*max_channels, codec.channels);
356 // Only bother swapping if we're using a stereo codec.
H A Dvoe_codec_impl.cc66 int VoECodecImpl::GetCodec(int index, CodecInst& codec) argument
69 "GetCodec(index=%d, codec=?)", index);
78 ACMToExternalCodecRepresentation(codec, acmCodec);
82 "channels=%d, rate=%d", codec.plname, codec.pacsize,
83 codec.plfreq, codec.pltype, codec.channels, codec.rate);
87 int VoECodecImpl::SetSendCodec(int channel, const CodecInst& codec) argument
150 GetSendCodec(int channel, CodecInst& codec) argument
183 GetRecCodec(int channel, CodecInst& codec) argument
216 SetRecPayloadType(int channel, const CodecInst& codec) argument
240 GetRecPayloadType(int channel, CodecInst& codec) argument
517 SetSecondarySendCodec(int channel, const CodecInst& codec, int red_payload_type) argument
577 GetSecondarySendCodec(int channel, CodecInst& codec) argument
[all...]
H A Dvoe_codec_impl.h26 virtual int GetCodec(int index, CodecInst& codec);
28 virtual int SetSendCodec(int channel, const CodecInst& codec);
30 virtual int GetSendCodec(int channel, CodecInst& codec);
32 virtual int GetRecCodec(int channel, CodecInst& codec);
39 const CodecInst& codec);
41 virtual int GetRecPayloadType(int channel, CodecInst& codec);
60 virtual int SetSecondarySendCodec(int channel, const CodecInst& codec,
65 virtual int GetSecondarySendCodec(int channel, CodecInst& codec);
/external/chromium_org/third_party/webrtc/voice_engine/include/
H A Dvoe_codec.h22 // VoECodec* codec = VoECodec::GetInterface(voe);
24 // int num_of_codecs = codec->NumOfCodecs()
28 // codec->Release();
57 // Get the |codec| information for a specified list |index|.
58 virtual int GetCodec(int index, CodecInst& codec) = 0;
60 // Sets the |codec| for the |channel| to be used for sending.
61 virtual int SetSendCodec(int channel, const CodecInst& codec) = 0;
63 // Gets the |codec| parameters for the sending codec on a specified
65 virtual int GetSendCodec(int channel, CodecInst& codec)
[all...]
/external/chromium_org/third_party/webrtc/voice_engine/test/android/android_test/jni/
H A Dandroid_test.cc43 if (!veData1.codec) \
64 if (!veData1.codec) \
122 VoECodec* codec; member in struct:__anon16247
770 // [codec] Number of codecs
777 return veData1.codec->NumOfCodecs();
781 // [codec] Set send codec
792 CodecInst codec; local
794 if (veData1.codec->GetCodec(index, codec) !
[all...]
/external/chromium_org/third_party/webrtc/voice_engine/test/auto_test/fixtures/
H A Dbefore_streaming_fixture.cc63 webrtc::CodecInst codec; local
64 codec.channels = 1;
65 codec.pacsize = 160;
66 codec.plfreq = 8000;
67 codec.pltype = 0;
68 codec.rate = 64000;
70 _snprintf(codec.plname, RTP_PAYLOAD_NAME_SIZE - 1, "PCMU");
72 snprintf(codec.plname, RTP_PAYLOAD_NAME_SIZE, "PCMU");
74 voe_codec_->SetSendCodec(channel_, codec);
/external/chromium_org/third_party/webrtc/voice_engine/test/auto_test/
H A Dvoe_cpu_test.cc50 VoECodec* codec = _mgr.CodecPtr(); local
73 CHECK(codec->SetRecPayloadType(channel, isac));
74 CHECK(codec->SetSendCodec(channel, isac));
82 CHECK(codec->SetVADStatus(channel, true));
/external/chromium_org/third_party/webrtc/voice_engine/test/cmd_test/
H A Dvoe_cmd_test.cc56 VoECodec* codec = NULL; variable
111 for (int i = 0; i < codec->NumOfCodecs(); ++i) {
112 int res = codec->GetCodec(i, codec_params);
129 codec = VoECodec::GetInterface(m_voe);
185 if (codec)
186 codec->Release();
300 printf("Select send codec: ");
303 codec->GetCodec(codec_selection, cinst);
305 printf("Set primary codec\n");
307 res = codec
[all...]
/external/chromium_org/third_party/webrtc/voice_engine/test/win_test/
H A DWinTestDlg.cc602 CodecInst codec; local
603 strcpy_s(codec.plname, 32, "telephone-event"); codec.channels = 1; codec.plfreq = 8000;
604 _veCodecPtr->GetRecPayloadType(_channel, codec);
605 SetDlgItemInt(IDC_EDIT_EVENT_RX_PT, codec.pltype);
950 CodecInst codec;
951 strcpy_s(codec.plname, 32, "telephone-event");
952 codec.pltype = pt; codec
[all...]
/external/chromium_org/tools/relocation_packer/src/
H A Ddelta_encoder_unittest.cc41 RelocationDeltaCodec codec; local
44 codec.Encode(relocations, &packed);
52 codec.Encode(relocations, &packed);
65 codec.Encode(relocations, &packed);
86 codec.Encode(relocations, &packed);
112 RelocationDeltaCodec codec; local
113 codec.Decode(packed, &relocations);
136 codec.Decode(packed, &relocations);
H A Dpacker.cc25 RelocationRunLengthCodec codec; local
26 codec.Encode(relocations, &packed_words);
64 RelocationRunLengthCodec codec; local
65 codec.Decode(packed_words, relocations);
75 RelocationDeltaCodec codec; local
76 codec.Encode(relocations, &packed_words);
120 RelocationDeltaCodec codec; local
121 codec.Decode(packed_words, relocations);
H A Drun_length_encoder_unittest.cc35 RelocationRunLengthCodec codec; local
38 codec.Encode(relocations, &packed);
46 codec.Encode(relocations, &packed);
54 codec.Encode(relocations, &packed);
74 codec.Encode(relocations, &packed);
93 RelocationRunLengthCodec codec; local
94 codec.Decode(packed, &relocations);
110 codec.Decode(packed, &relocations);
/external/chromium_org/ui/gfx/
H A Dgfx.target.darwin-arm.mk46 ui/gfx/codec/jpeg_codec.cc \
47 ui/gfx/codec/png_codec.cc \
H A Dgfx.target.darwin-arm64.mk46 ui/gfx/codec/jpeg_codec.cc \
47 ui/gfx/codec/png_codec.cc \
H A Dgfx.target.darwin-mips.mk46 ui/gfx/codec/jpeg_codec.cc \
47 ui/gfx/codec/png_codec.cc \
H A Dgfx.target.darwin-mips64.mk46 ui/gfx/codec/jpeg_codec.cc \
47 ui/gfx/codec/png_codec.cc \
H A Dgfx.target.darwin-x86.mk46 ui/gfx/codec/jpeg_codec.cc \
47 ui/gfx/codec/png_codec.cc \
H A Dgfx.target.darwin-x86_64.mk46 ui/gfx/codec/jpeg_codec.cc \
47 ui/gfx/codec/png_codec.cc \
H A Dgfx.target.linux-arm.mk46 ui/gfx/codec/jpeg_codec.cc \
47 ui/gfx/codec/png_codec.cc \

Completed in 466 milliseconds

<<1112131415161718