Searched defs:audio_type (Results 1 - 13 of 13) sorted by relevance

/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/fix/test/
H A Disac_speed_test.cc86 int16_t audio_type; local
90 encoded_bytes, out_data, &audio_type);
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/opus/
H A Dopus_speed_test.cc73 int16_t audio_type; local
76 out_data, &audio_type);
H A Dopus_fec_test.cc141 int16_t audio_type; local
150 &audio_type);
162 &audio_type);
H A Dopus_unittest.cc131 int16_t audio_type; local
141 &audio_type));
145 &audio_type));
174 int16_t audio_type; local
185 &audio_type));
189 &audio_type));
193 &audio_type));
258 int16_t audio_type; local
269 &audio_type));
273 &audio_type));
399 int16_t audio_type; local
450 int16_t audio_type; local
[all...]
H A Dopus_interface.c227 int16_t* decoded, int16_t* audio_type) {
234 *audio_type = 0;
244 int16_t* decoded, int16_t* audio_type) {
251 *audio_type = 0;
261 int16_t* audio_type) {
267 decoded, audio_type);
280 int16_t* audio_type) {
292 audio_type);
315 int16_t* audio_type) {
321 audio_type);
225 DecodeNative(OpusDecoder* inst, const int16_t* encoded, int16_t encoded_bytes, int frame_size, int16_t* decoded, int16_t* audio_type) argument
242 DecodeFec(OpusDecoder* inst, const int16_t* encoded, int16_t encoded_bytes, int frame_size, int16_t* decoded, int16_t* audio_type) argument
259 WebRtcOpus_DecodeNew(OpusDecInst* inst, const uint8_t* encoded, int16_t encoded_bytes, int16_t* decoded, int16_t* audio_type) argument
278 WebRtcOpus_Decode(OpusDecInst* inst, const int16_t* encoded, int16_t encoded_bytes, int16_t* decoded, int16_t* audio_type) argument
313 WebRtcOpus_DecodeSlave(OpusDecInst* inst, const int16_t* encoded, int16_t encoded_bytes, int16_t* decoded, int16_t* audio_type) argument
344 int16_t audio_type = 0; local
366 int16_t audio_type = 0; local
405 int16_t audio_type = 0; local
439 WebRtcOpus_DecodeFec(OpusDecInst* inst, const uint8_t* encoded, int16_t encoded_bytes, int16_t* decoded, int16_t* audio_type) argument
[all...]
/external/srec/srec/EventLog/src/
H A DEventLog.c126 ESR_ReturnCode SR_EventLogAudioOpen(SR_EventLog* self, const LCHAR* audio_type, size_t sample_rate, size_t sample_size) argument
133 return self->audioOpen(self, audio_type, sample_rate, sample_size);
H A DEventLogImpl.c653 ESR_ReturnCode SR_EventLog_AudioOpen(SR_EventLog* self, const LCHAR* audio_type, size_t sample_rate, size_t sample_size) argument
H A Driff.c673 * audio_type is a constant string (not allocated)
679 const wchar_t **audio_type, SwiRiffStruct *swichunk)
687 *audio_type = NULL; /* for error recovery higher up */
767 *audio_type = NULL;
775 *audio_type = L"audio/L16;rate=8000";
777 *audio_type = L"audio/L16;rate=16000";
783 *audio_type = L"audio/x-alaw-basic;rate=8000";
793 *audio_type = L"audio/basic;rate=8000";
795 *audio_type = L"audio/basic;rate=8000;orig-encoding=g723";
797 *audio_type
678 readRiff2Buf(FILE *f, void **waveform, unsigned int *num_bytes, const wchar_t **audio_type, SwiRiffStruct *swichunk) argument
853 getFormatTag(wchar_t *audio_type) argument
941 convertBuf2Riff( unsigned char *waveform, unsigned int num_bytes, wchar_t *audio_type, int rate, int bytes_per_sample, SwiRiffStruct *swichunk, unsigned char **buf, unsigned int *buflen) argument
[all...]
/external/chromium_org/content/public/common/
H A Dmedia_stream_request.cc95 MediaStreamType audio_type,
105 audio_type(audio_type),
86 MediaStreamRequest( int render_process_id, int render_frame_id, int page_request_id, const GURL& security_origin, bool user_gesture, MediaStreamRequestType request_type, const std::string& requested_audio_device_id, const std::string& requested_video_device_id, MediaStreamType audio_type, MediaStreamType video_type) argument
H A Dmedia_stream_request.h206 MediaStreamType audio_type,
245 MediaStreamType audio_type; member in struct:content::MediaStreamRequest
/external/chromium_org/third_party/webrtc/modules/audio_coding/main/test/
H A Dopus_test.cc217 int16_t audio_type; local
309 &out_audio[decoded_samples * channels], &audio_type);
318 &out_audio[decoded_samples * channels], &audio_type);
/external/chromium_org/media/formats/mp4/
H A Dmp4_stream_parser.cc225 uint8 audio_type = entry.esds.object_type; local
226 DVLOG(1) << "audio_type " << std::hex << static_cast<int>(audio_type);
227 if (audio_object_types_.find(audio_type) == audio_object_types_.end()) {
228 MEDIA_LOG(log_cb_) << "audio object type 0x" << std::hex << audio_type local
240 if (ESDescriptor::IsAAC(audio_type)) {
249 << audio_type << " in esds."; local
/external/chromium_org/content/browser/renderer_host/media/
H A Dmedia_stream_manager.cc82 MediaStreamType* audio_type,
84 *audio_type = MEDIA_NO_SERVICE;
95 *audio_type = content::MEDIA_TAB_AUDIO_CAPTURE;
97 *audio_type = content::MEDIA_LOOPBACK_AUDIO_CAPTURE;
101 *audio_type = MEDIA_DEVICE_AUDIO_CAPTURE;
226 void SetAudioType(MediaStreamType audio_type) { argument
227 DCHECK(IsAudioInputMediaType(audio_type) ||
228 audio_type == MEDIA_DEVICE_AUDIO_OUTPUT ||
229 audio_type == MEDIA_NO_SERVICE);
230 audio_type_ = audio_type;
81 ParseStreamType(const StreamOptions& options, MediaStreamType* audio_type, MediaStreamType* video_type) argument
233 MediaStreamType audio_type() const { return audio_type_; } function in class:content::MediaStreamManager::DeviceRequest
1143 const MediaStreamType audio_type = request->audio_type(); local
1202 MediaStreamType audio_type = MEDIA_NO_SERVICE; local
[all...]

Completed in 284 milliseconds