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

1 2 3 4

  /external/chromium_org/third_party/webrtc/voice_engine/
voe_codec_impl.h 26 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);
58 virtual int SetSecondarySendCodec(int channel, const CodecInst& codec,
63 virtual int GetSecondarySendCodec(int channel, CodecInst& codec);
70 void ACMToExternalCodecRepresentation(CodecInst& toInst,
71 const CodecInst& fromInst)
    [all...]
voe_file_impl.h 69 CodecInst* compression = NULL,
74 CodecInst* compression = NULL);
81 CodecInst* compression = NULL,
85 CodecInst* compression = NULL);
voe_codec_unittest.cc 56 CodecInst my_codec;
95 CodecInst primary_;
96 CodecInst valid_secondary_;
100 CodecInst invalid_secondary_;
138 CodecInst my_codec;
166 CodecInst my_codec;
173 CodecInst codec1, codec2;
174 memset(&codec1, 0, sizeof(CodecInst));
175 memset(&codec2, 0, sizeof(CodecInst));
183 memcpy(&codec2, &codec1, sizeof(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...]
voe_codec_impl.cc 66 int VoECodecImpl::GetCodec(int index, CodecInst& codec)
70 CodecInst acmCodec;
87 int VoECodecImpl::SetSendCodec(int channel, const CodecInst& codec)
89 CodecInst copyCodec;
134 (CodecInst&) copyCodec))
150 int VoECodecImpl::GetSendCodec(int channel, CodecInst& codec)
167 CodecInst acmCodec;
183 int VoECodecImpl::GetRecCodec(int channel, CodecInst& codec)
200 CodecInst acmCodec;
216 int VoECodecImpl::SetRecPayloadType(int channel, const CodecInst& codec
    [all...]
  /external/chromium_org/third_party/webrtc/examples/android/media_demo/src/org/webrtc/webrtcdemo/
CodecInst.java 13 public class CodecInst {
16 // CodecInst can only be created from the native layer.
17 private CodecInst(long nativeCodecInst) {
30 // Dispose must be called before all references to CodecInst are lost as it
  /external/chromium_org/third_party/webrtc/voice_engine/include/
voe_codec.h 58 virtual int GetCodec(int index, CodecInst& codec) = 0;
61 virtual int SetSendCodec(int channel, const CodecInst& codec) = 0;
65 virtual int GetSendCodec(int channel, CodecInst& codec) = 0;
74 virtual int SetSecondarySendCodec(int channel, const CodecInst& codec,
82 virtual int GetSecondarySendCodec(int channel, CodecInst& codec) = 0;
85 virtual int GetRecCodec(int channel, CodecInst& codec) = 0;
93 virtual int SetRecPayloadType(int channel, const CodecInst& codec) = 0;
98 virtual int GetRecPayloadType(int channel, CodecInst& codec) = 0;
voe_file.h 115 CodecInst* compression = NULL,
123 CodecInst* compression = NULL) = 0;
127 CodecInst* compression = NULL,
132 CodecInst* compression = NULL) = 0;
154 CodecInst* compression) { return -1; }
157 CodecInst* compression) { return -1; }
  /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/source/
media_file_impl.h 44 const CodecInst* codecInst = NULL,
52 const CodecInst* codecInst = NULL,
65 const CodecInst& codecInst,
71 const CodecInst& codecInst,
77 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...]
  /external/chromium_org/third_party/webrtc/modules/utility/source/
coder.h 29 const CodecInst& codecInst,
33 const CodecInst& codecInst,
55 CodecInst _receiveCodec;
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...]
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;
  /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/audio_coding/main/acm2/
acm_codec_database.h 237 static int Codec(int codec_id, CodecInst* codec_inst);
263 static int CodecNumber(const CodecInst& codec_inst, int* mirror_id,
265 static int CodecNumber(const CodecInst& codec_inst, int* mirror_id);
266 static int CodecId(const CodecInst& codec_inst);
268 static int ReceiverCodecNumber(const CodecInst& codec_inst, int* mirror_id);
311 static ACMGenericCodec* CreateCodecInstance(const CodecInst& codec_inst);
350 static const CodecInst database_[kMaxNumCodecs];
audio_coding_module.cc 39 int AudioCodingModule::Codec(int list_id, CodecInst* codec) {
46 CodecInst* codec,
83 bool AudioCodingModule::IsCodecValid(const CodecInst& codec) {
audio_coding_module_impl.h 59 int RegisterSendCodec(const CodecInst& send_codec);
63 int RegisterSecondarySendCodec(const CodecInst& send_codec);
70 int SecondarySendCodec(CodecInst* secondary_codec) const;
73 int SendCodec(CodecInst* current_codec) const;
149 int RegisterReceiveCodec(const CodecInst& receive_codec);
152 int ReceiveCodec(CodecInst* current_codec) const;
247 ACMGenericCodec* CreateCodec(const CodecInst& codec);
305 int GetAudioDecoder(const CodecInst& codec, int codec_id,
312 CodecInst send_codec_inst_ GUARDED_BY(acm_crit_sect_);
364 CodecInst secondary_send_codec_inst_ GUARDED_BY(acm_crit_sect_)
    [all...]
acm_receiver.h 31 struct CodecInst;
269 int LastAudioCodec(CodecInst* codec) const;
290 CodecInst* codec) const;
  /external/chromium_org/third_party/webrtc/modules/audio_coding/main/interface/
audio_coding_module.h 26 struct CodecInst;
132 static int Codec(int list_id, CodecInst* codec);
153 static int Codec(const char* payload_name, CodecInst* codec,
187 static bool IsCodecValid(const CodecInst& codec);
239 // CodecInst.
245 virtual int32_t RegisterSendCodec(const CodecInst& send_codec) = 0;
260 // CodecInst.
266 virtual int RegisterSecondarySendCodec(const CodecInst& send_codec) = 0;
285 virtual int32_t SendCodec(CodecInst* current_send_codec) const = 0;
298 virtual int SecondarySendCodec(CodecInst* secondary_codec) const = 0
    [all...]
  /external/chromium_org/third_party/webrtc/modules/audio_coding/main/test/
iSACTest.h 70 CodecInst _paramISAC16kHz;
71 CodecInst _paramISAC32kHz;
initial_delay_unittest.cc 68 CodecInst codec;
85 CodecInst codec;
92 CodecInst codec;
99 CodecInst codec;
106 CodecInst codec;
113 CodecInst codec;
120 CodecInst codec;
127 void Run(CodecInst codec, int initial_delay_ms) {
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...]

Completed in 772 milliseconds

1 2 3 4