HomeSort by relevance Sort by last modified time
    Searched refs:codecInst (Results 1 - 25 of 25) sorted by null

  /external/chromium_org/third_party/webrtc/modules/audio_coding/main/test/
SpatialAudio.cc 68 CodecInst codecInst;
73 status = _acmReceiver->Codec(n, &codecInst);
77 status = _acmReceiver->RegisterReceiveCodec(codecInst);
80 codecInst.pltype);
96 CodecInst codecInst;
97 _acmLeft->Codec((uint8_t) 1, &codecInst);
98 CHECK_ERROR(_acmLeft->RegisterSendCodec(codecInst));
109 _acmLeft->Codec((uint8_t) 0, &codecInst);
    [all...]
utility.cc 104 int16_t ChooseCodec(CodecInst& codecInst) {
122 CHECK_ERROR(AudioCodingModule::Codec((uint8_t )codecID, &codecInst));
129 CodecInst codecInst;
132 AudioCodingModule::Codec(codecCntr, &codecInst);
133 printf("%2d- %-18s %5d %6d\n", codecCntr, codecInst.plname,
134 codecInst.plfreq, codecInst.rate);
Channel.h 63 int16_t Stats(CodecInst& codecInst, ACMTestPayloadStats& payloadStats);
69 void PrintStats(CodecInst& codecInst);
Channel.cc 280 int16_t Channel::Stats(CodecInst& codecInst,
286 if (_payloadStats[n].payloadType == codecInst.pltype) {
301 .frameSizeStats[n].totalEncodedSamples / (double) codecInst.plfreq;
356 void Channel::PrintStats(CodecInst& codecInst) {
358 Stats(codecInst, payloadStats);
359 printf("%s %d kHz\n", codecInst.plname, codecInst.plfreq / 1000);
363 codecInst.pltype, codecInst.plname)
    [all...]
utility.h 112 int16_t ChooseCodec(CodecInst& codecInst);
TwoWayCommunication.cc 65 CodecInst codecInst;
69 EXPECT_EQ(tmpACM->Codec(codecCntr, &codecInst), 0);
70 printf("%d- %s\n", codecCntr, codecInst.plname);
89 CodecInst codecInst_A;
90 CodecInst codecInst_B;
91 CodecInst dummyCodec;
180 CodecInst codecInst_A;
181 CodecInst codecInst_B;
182 CodecInst dummyCodec
    [all...]
  /external/chromium_org/third_party/webrtc/modules/media_file/source/
media_file_impl.h 46 const CodecInst* codecInst = NULL,
55 const CodecInst* codecInst = NULL,
68 const CodecInst& codecInst,
74 const CodecInst& codecInst,
80 const CodecInst& codecInst,
    [all...]
media_file_utility.h 55 // (relative path is allowed). codecInst specifies the encoding of the audio
59 const CodecInst& codecInst,
65 // codecInst.pacsize parameter of the last sucessfull
84 int32_t VideoCodecInst(VideoCodec& codecInst);
117 // codecInst specifies the encoding of the audio data.
118 // Note: codecInst.channels should be set to 2 for stereo (and 1 for
120 int32_t InitWavWriting(OutStream& stream, const CodecInst& codecInst);
123 // to file. The audio frame size is determined by the codecInst.pacsiz
    [all...]
media_file_impl.cc 372 const CodecInst* codecInst,
378 format, codecInst, startPointMs, stopPointMs);
401 const CodecInst* codecInst,
410 if(!ValidFileFormat(format,codecInst))
454 format, codecInst, startPointMs, stopPointMs,
476 const CodecInst* codecInst,
481 codecInst, startPointMs, stopPointMs)
    [all...]
media_file_utility.cc 74 memset(&codec_info_,0,sizeof(CodecInst));
94 const CodecInst& audioCodecInst,
415 int32_t ModuleFileUtility::VideoCodecInst(VideoCodec& codecInst)
418 "ModuleFileUtility::CodecInst(codecInst= 0x%x)", &codecInst);
423 "CodecInst: not currently reading audio file!");
426 memcpy(&codecInst,&_videoCodec,sizeof(VideoCodec));
1034 const CodecInst& codecInst)
    [all...]
  /external/chromium_org/third_party/webrtc/modules/utility/interface/
file_recorder.h 43 const CodecInst& codecInst,
49 const CodecInst& codecInst,
61 virtual int32_t codec_info(CodecInst& codecInst) const = 0;
76 const CodecInst& audioCodecInst,
file_player.h 50 // Note: codecInst is used for pre-encoded files.
58 const CodecInst* codecInst = NULL) = 0;
60 // Note: codecInst is used for pre-encoded files.
67 const CodecInst* codecInst = NULL) = 0;
76 virtual int32_t AudioCodec(CodecInst& audioCodec) const = 0;
  /external/chromium_org/third_party/webrtc/modules/media_file/interface/
media_file.h 72 // codecInst specifies the encoding of the audio data. Note that
74 // provide a non-NULL codecInst. startPointMs and stopPointMs, unless zero,
77 // Note: codecInst.channels should be set to 2 for stereo (and 1 for
84 const CodecInst* codecInst = NULL,
102 // codecInst specifies the encoding of the audio data. Note that
104 // provide a non-NULL codecInst. startPointMs and stopPointMs, unless zero,
107 // Note: codecInst.channels should be set to 2 for stereo (and 1 for
113 const CodecInst* codecInst = NULL
    [all...]
  /external/chromium_org/third_party/webrtc/modules/utility/source/
coder.cc 33 int32_t AudioCoder::SetEncodeCodec(const CodecInst& codecInst,
36 if(_acm->RegisterSendCodec((CodecInst&)codecInst) == -1)
43 int32_t AudioCoder::SetDecodeCodec(const CodecInst& codecInst,
46 if(_acm->RegisterReceiveCodec((CodecInst&)codecInst) == -1)
50 memcpy(&_receiveCodec,&codecInst,sizeof(CodecInst));
    [all...]
coder.h 29 const CodecInst& codecInst,
33 const CodecInst& codecInst,
56 CodecInst _receiveCodec;
file_recorder_impl.h 58 const CodecInst& codecInst,
63 const CodecInst& codecInst,
68 virtual int32_t codec_info(CodecInst& codecInst) const;
74 const CodecInst& audioCodecInst,
100 CodecInst codec_info_;
144 const CodecInst& audioCodecInst,
file_player_impl.h 47 const CodecInst* codecInst = NULL);
54 const CodecInst* codecInst = NULL);
58 virtual int32_t AudioCodec(CodecInst& audioCodec) const;
74 CodecInst _codec;
file_recorder_impl.cc 89 const CodecInst& codecInst,
97 codec_info_ = codecInst;
106 codecInst,
129 const CodecInst& codecInst,
133 codec_info_ = codecInst;
139 codecInst,
160 memset(&codec_info_, 0, sizeof(CodecInst));
300 int32_t FileRecorderImpl::codec_info(CodecInst& codecInst) cons
    [all...]
file_player_impl.cc 102 int32_t FilePlayerImpl::AudioCodec(CodecInst& audioCodec) const
223 const CodecInst* codecInst)
229 CodecInst codecInstL16;
271 _fileFormat, codecInst) == -1)
279 CodecInst* no_inst = NULL;
304 const CodecInst* codecInst)
310 CodecInst codecInstL16;
351 _fileFormat, codecInst) == -1
    [all...]
  /external/chromium_org/third_party/webrtc/voice_engine/
output_mixer.cc 301 const CodecInst* codecInst)
315 CodecInst dummyCodec={100,"L16",16000,320,1,320000};
317 if ((codecInst != NULL) &&
318 ((codecInst->channels < 1) || (codecInst->channels > 2)))
325 if(codecInst == NULL)
328 codecInst=&dummyCodec;
330 else if((STR_CASE_CMP(codecInst->plname,"L16") == 0) ||
331 (STR_CASE_CMP(codecInst->plname,"PCMU") == 0) |
    [all...]
transmit_mixer.cc 311 CodecInst codec;
506 const CodecInst* codecInst)
554 (const CodecInst*) codecInst) != 0)
576 const CodecInst* codecInst)
630 (const CodecInst*) codecInst) != 0)
685 const CodecInst* codecInst
    [all...]
transmit_mixer.h 107 const CodecInst* codecInst);
114 const CodecInst* codecInst);
121 const CodecInst* codecInst);
124 const CodecInst* codecInst);
128 int StartRecordingCall(const char* fileName, const CodecInst* codecInst);
    [all...]
output_mixer.h 81 const CodecInst* codecInst);
84 const CodecInst* codecInst);
channel.h 201 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);
229 const CodecInst* codecInst);
234 const CodecInst* codecInst)
    [all...]
channel.cc 372 CodecInst receiveCodec = {0};
373 CodecInst dummyCodec = {0};
    [all...]

Completed in 3158 milliseconds