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

/external/chromium_org/content/common/media/
H A Dmedia_stream_options.h29 StreamOptions(MediaStreamType audio_type, MediaStreamType video_type);
32 MediaStreamType audio_type; member in struct:content::StreamOptions
H A Dmedia_stream_options.cc19 : audio_type(MEDIA_NO_SERVICE),
22 StreamOptions::StreamOptions(MediaStreamType audio_type, argument
24 : audio_type(audio_type), video_type(video_type) {
25 DCHECK(IsAudioMediaType(audio_type) || audio_type == MEDIA_NO_SERVICE);
/external/chromium_org/content/public/common/
H A Dmedia_stream_request.cc60 MediaStreamType audio_type,
70 audio_type(audio_type),
51 MediaStreamRequest( int render_process_id, int render_view_id, int page_request_id, const std::string& tab_capture_device_id, const GURL& security_origin, 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.h124 MediaStreamType audio_type,
156 MediaStreamType audio_type; member in struct:content::MediaStreamRequest
/external/srec/srec/EventLog/src/
H A DEventLog.c116 ESR_ReturnCode SR_EventLogAudioOpen(SR_EventLog* self, const LCHAR* audio_type, size_t sample_rate, size_t sample_size) argument
123 return self->audioOpen(self, audio_type, sample_rate, sample_size);
H A DEventLogImpl.c641 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/media/mp4/
H A Dmp4_stream_parser.cc208 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 << " i local
[all...]
/external/chromium_org/content/browser/renderer_host/media/
H A Dmedia_stream_manager.cc60 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 !
621 const MediaStreamType audio_type = request->request.audio_type; local
[all...]

Completed in 204 milliseconds