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

  /external/chromium_org/content/common/media/
media_stream_options.cc 19 : audio_type(MEDIA_NO_SERVICE),
22 StreamOptions::StreamOptions(MediaStreamType audio_type,
24 : audio_type(audio_type), video_type(video_type) {
25 DCHECK(IsAudioMediaType(audio_type) || audio_type == MEDIA_NO_SERVICE);
media_stream_options.h 29 StreamOptions(MediaStreamType audio_type, MediaStreamType video_type);
32 MediaStreamType audio_type; member in struct:content::StreamOptions
media_stream_messages.h 23 IPC_STRUCT_TRAITS_MEMBER(audio_type)
  /external/chromium_org/content/public/common/
media_stream_request.cc 60 MediaStreamType audio_type,
70 audio_type(audio_type),
media_stream_request.h 124 MediaStreamType audio_type,
156 MediaStreamType audio_type; member in struct:content::MediaStreamRequest
  /external/chromium_org/content/renderer/media/
mock_media_stream_dispatcher.cc 33 if (IsAudioMediaType(components.audio_type)) {
37 audio.device.type = components.audio_type;
media_stream_impl.cc 53 if (options->audio_type != content::MEDIA_NO_SERVICE) {
57 options->audio_type = content::MEDIA_TAB_AUDIO_CAPTURE;
62 options->audio_type = content::MEDIA_SYSTEM_AUDIO_CAPTURE;
163 options.audio_type = MEDIA_DEVICE_AUDIO_CAPTURE;
167 options.audio_type = MEDIA_DEVICE_AUDIO_CAPTURE;
190 << "audio=" << (options.audio_type)
  /external/srec/srec/EventLog/include/
riff.h 227 wchar_t *audio_type,
238 const wchar_t **audio_type,
SR_EventLogImpl.h 92 SREC_EVENTLOG_API ESR_ReturnCode SR_EventLog_AudioOpen(SR_EventLog* self, const LCHAR* audio_type, size_t sample_rate, size_t sample_size);
SR_EventLog.h 211 * @param audio_type String identifying type of audio e.g. L("audio/L16")
215 ESR_ReturnCode(*audioOpen)(struct SR_EventLog_t* self, const LCHAR* audio_type, size_t sample_rate, size_t sample_size);
333 * @param audio_type String identifying type of audio e.g. L("audio/L16")
337 SREC_EVENTLOG_API ESR_ReturnCode SR_EventLogAudioOpen(SR_EventLog* self, const LCHAR* audio_type, size_t sample_rate, size_t sample_size);
  /external/srec/srec/EventLog/src/
riff.c 673 * 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 = L"audio/basic;rate=8000;orig-encoding=g729"
    [all...]
EventLog.c 116 ESR_ReturnCode SR_EventLogAudioOpen(SR_EventLog* self, const LCHAR* audio_type, size_t sample_rate, size_t sample_size)
123 return self->audioOpen(self, audio_type, sample_rate, sample_size);
EventLogImpl.c 641 ESR_ReturnCode SR_EventLog_AudioOpen(SR_EventLog* self, const LCHAR* audio_type, size_t sample_rate, size_t sample_size)
  /external/chromium_org/content/browser/renderer_host/media/
media_stream_manager.cc 60 return (request.audio_type == stream_type ||
88 request.audio_type != MEDIA_TAB_AUDIO_CAPTURE &&
194 options.audio_type, options.video_type);
227 if (options.audio_type == MEDIA_TAB_AUDIO_CAPTURE ||
241 (options.audio_type != MEDIA_TAB_AUDIO_CAPTURE &&
242 options.audio_type != MEDIA_NO_SERVICE) ||
252 if (options.audio_type == MEDIA_DEVICE_AUDIO_CAPTURE) {
267 options.audio_type == MEDIA_SYSTEM_AUDIO_CAPTURE) {
272 (options.audio_type != MEDIA_NO_SERVICE &&
273 options.audio_type != MEDIA_SYSTEM_AUDIO_CAPTURE))
621 const MediaStreamType audio_type = request->request.audio_type; local
    [all...]
media_stream_ui_proxy_unittest.cc 90 expected.audio_type == arg.audio_type &&
media_stream_dispatcher_host.cc 154 << " audio:" << components.audio_type
media_stream_ui_proxy.cc 195 IsAudioMediaType(request.audio_type) &&
  /external/chromium_org/chrome/browser/media/
media_stream_devices_controller.cc 67 request.audio_type == content::MEDIA_DEVICE_AUDIO_CAPTURE ||
116 if (request_.audio_type == content::MEDIA_TAB_AUDIO_CAPTURE ||
173 if (request_.audio_type == content::MEDIA_DEVICE_AUDIO_CAPTURE) {
457 if (request_.audio_type == content::MEDIA_DEVICE_AUDIO_CAPTURE) {
481 if (request_.audio_type == content::MEDIA_TAB_AUDIO_CAPTURE ||
486 if (request_.audio_type == content::MEDIA_DEVICE_AUDIO_CAPTURE)
media_capture_devices_dispatcher.cc 184 request.audio_type == content::MEDIA_SYSTEM_AUDIO_CAPTURE) {
219 request.audio_type == content::MEDIA_SYSTEM_AUDIO_CAPTURE;
258 request.audio_type == content::MEDIA_NO_SERVICE ?
324 if (request.audio_type == content::MEDIA_TAB_AUDIO_CAPTURE &&
329 } else if (request.audio_type == content::MEDIA_DEVICE_AUDIO_CAPTURE &&
  /external/chromium_org/media/mp4/
mp4_stream_parser.cc 208 uint8 audio_type = entry.esds.object_type; local
209 DVLOG(1) << "audio_type " << std::hex << audio_type; local
210 if (audio_type == kForbidden && entry.format == FOURCC_EAC3) {
211 audio_type = kEAC3;
213 if (audio_object_types_.find(audio_type) == audio_object_types_.end()) {
214 MEDIA_LOG(log_cb_) << "audio object type 0x" << std::hex << audio_type local
226 if (ESDescriptor::IsAAC(audio_type)) {
233 } else if (audio_type == kEAC3) {
239 << audio_type << " in esds." local
    [all...]

Completed in 598 milliseconds