Searched defs:media_type (Results 1 - 21 of 21) sorted by relevance

/external/chromium_org/content/browser/media/
H A Dmedia_source_browsertest.cc36 const std::string& media_type,
45 query_params.push_back(std::make_pair("mediaType", media_type));
35 TestSimplePlayback(const std::string& media_file, const std::string& media_type, const std::string& expectation) argument
H A Dencrypted_media_browsertest.cc66 const std::string& media_type) {
68 encrypted_media, media_type, CurrentKeySystem(), CurrentSourceType());
91 const std::string& media_type,
106 query_params.push_back(std::make_pair("mediaType", media_type));
114 const std::string& media_type,
119 media_type,
65 TestSimplePlayback(const std::string& encrypted_media, const std::string& media_type) argument
89 RunEncryptedMediaTest(const std::string& html_page, const std::string& media_file, const std::string& media_type, const std::string& key_system, SrcType src_type, const std::string& expectation) argument
113 RunSimpleEncryptedMediaTest(const std::string& media_file, const std::string& media_type, const std::string& key_system, SrcType src_type) argument
/external/chromium_org/media/cast/logging/
H A Dlogging_raw_unittest.cc29 EventMediaType media_type = VIDEO_EVENT; local
33 raw_.InsertFrameEvent(timestamp, event_type, media_type,
46 EXPECT_EQ(media_type, frame_events_[0].media_type);
52 EventMediaType media_type = VIDEO_EVENT; local
59 raw_.InsertEncodedFrameEvent(timestamp, event_type, media_type,
72 EXPECT_EQ(media_type, frame_events_[0].media_type);
80 EventMediaType media_type = VIDEO_EVENT; local
85 raw_.InsertFrameEventWithDelay(timestamp, event_type, media_type,
104 EventMediaType media_type = VIDEO_EVENT; local
137 EventMediaType media_type = VIDEO_EVENT; local
[all...]
H A Dlogging_defines.h66 EventMediaType media_type; member in struct:media::cast::FrameEvent
92 EventMediaType media_type; member in struct:media::cast::PacketEvent
/external/chromium_org/media/video/capture/win/
H A Dsink_input_pin_win.cc27 bool SinkInputPin::GetValidMediaType(int index, AM_MEDIA_TYPE* media_type) { argument
28 if (media_type->cbFormat < sizeof(VIDEOINFOHEADER))
32 reinterpret_cast<VIDEOINFOHEADER*>(media_type->pbFormat);
44 media_type->majortype = MEDIATYPE_Video;
45 media_type->formattype = FORMAT_VideoInfo;
46 media_type->bTemporalCompression = FALSE;
56 media_type->subtype = kMediaSubTypeI420;
65 media_type->subtype = MEDIASUBTYPE_YUY2;
74 media_type->subtype = MEDIASUBTYPE_RGB24;
81 media_type
86 IsMediaTypeValid(const AM_MEDIA_TYPE* media_type) argument
[all...]
H A Dvideo_capture_device_factory_win.cc248 VideoCaptureDeviceWin::ScopedMediaType media_type; local
249 hr = stream_config->GetStreamCaps(i, media_type.Receive(), caps.get());
258 if (media_type->majortype == MEDIATYPE_Video &&
259 media_type->formattype == FORMAT_VideoInfo) {
263 media_type->subtype);
267 reinterpret_cast<VIDEOINFOHEADER*>(media_type->pbFormat);
H A Dpin_base_win.cc129 const AM_MEDIA_TYPE* media_type) {
130 if (!receive_pin || !media_type)
133 current_media_type_ = *media_type;
136 HRESULT hr = receive_pin->ReceiveConnection(this, media_type);
144 const AM_MEDIA_TYPE* media_type) {
145 if (!IsMediaTypeValid(media_type))
148 current_media_type_ = *media_type;
171 STDMETHODIMP PinBase::ConnectionMediaType(AM_MEDIA_TYPE* media_type) { argument
174 *media_type = current_media_type_;
198 STDMETHODIMP PinBase::QueryAccept(const AM_MEDIA_TYPE* media_type) { argument
128 Connect(IPin* receive_pin, const AM_MEDIA_TYPE* media_type) argument
143 ReceiveConnection(IPin* connector, const AM_MEDIA_TYPE* media_type) argument
[all...]
H A Dvideo_capture_device_win.cc349 ScopedMediaType media_type; local
355 found_capability.stream_index, media_type.Receive(), caps.get());
360 if (media_type->formattype == FORMAT_VideoInfo) {
362 reinterpret_cast<VIDEOINFOHEADER*>(media_type->pbFormat);
369 hr = stream_config->SetFormat(media_type.get());
405 } else if (media_type->subtype == kMediaSubTypeHDYC) {
505 ScopedMediaType media_type; local
506 hr = stream_config->GetStreamCaps(i, media_type.Receive(), caps.get());
515 if (media_type->majortype == MEDIATYPE_Video &&
516 media_type
[all...]
/external/bluetooth/bluedroid/stack/a2dp/
H A Da2d_sbc.c214 ** media_type: Indicates Audio, or Multimedia.
224 tA2D_STATUS A2D_BldSbcInfo(UINT8 media_type, tA2D_SBC_CIE *p_ie, UINT8 *p_result) argument
247 *p_result++ = media_type;
415 tA2D_STATUS A2D_BldSbcInfo(UINT8 media_type, tA2D_SBC_CIE *p_ie, argument
418 UNUSED(media_type);
/external/chromium_org/content/public/common/
H A Dcontext_menu_params.h57 blink::WebContextMenuData::MediaType media_type; member in struct:content::ContextMenuParams
/external/chromium_org/media/cast/net/
H A Dcast_transport_sender_impl.cc328 EventMediaType media_type,
342 media_type, rtp_timestamp,
348 event_it->event_timestamp, event_it->type, media_type,
353 event_it->event_timestamp, event_it->type, media_type,
327 OnReceivedLogMessage( EventMediaType media_type, const RtcpReceiverLogMessage& log) argument
/external/chromium_org/media/cast/net/pacing/
H A Dpaced_sender.cc341 EventMediaType media_type = is_audio ? AUDIO_EVENT : VIDEO_EVENT; local
342 logging_->InsertSinglePacketEvent(clock_->NowTicks(), event, media_type,
/external/chromium_org/chrome/browser/media/
H A Dencrypted_media_browsertest.cc128 // Tests |html_page| using |media_file| (with |media_type|) and |key_system|.
138 const std::string& media_type,
151 query_params.push_back(std::make_pair("mediaType", media_type));
166 const std::string& media_type,
176 media_type,
375 const std::string& media_type) {
377 media_type,
136 RunEncryptedMediaTest(const std::string& html_page, const std::string& media_file, const std::string& media_type, const std::string& key_system, SrcType src_type, EmeVersion eme_version, const std::string& session_to_load, bool force_invalid_response, const std::string& expected_title) argument
165 RunSimpleEncryptedMediaTest(const std::string& media_file, const std::string& media_type, const std::string& key_system, SrcType src_type, EmeVersion eme_version) argument
374 TestSimplePlayback(const std::string& encrypted_media, const std::string& media_type) argument
/external/bluetooth/bluedroid/bta/av/
H A Dbta_av_aact.c379 (p_scb->sep_info[i].media_type == p_scb->media_type))
1147 p_info->media_type = p_scb->media_type;
1335 p_scb->sep_info[i].media_type = p_scb->media_type;
1597 (p_scb->sep_info[i].media_type == p_scb->media_type))
1655 (p_scb->sep_info[i].media_type == p_scb->media_type))
1838 UINT8 media_type; local
[all...]
H A Dbta_av_int.h483 UINT8 media_type; /* Media type */ member in struct:__anon458
/external/chromium_org/content/common/gpu/media/
H A Ddxva_video_decode_accelerator.cc740 base::win::ScopedComPtr<IMFMediaType> media_type; local
741 HRESULT hr = MFCreateMediaType(media_type.Receive());
744 hr = media_type->SetGUID(MF_MT_MAJOR_TYPE, MFMediaType_Video);
747 hr = media_type->SetGUID(MF_MT_SUBTYPE, MFVideoFormat_H264);
752 hr = media_type->SetUINT32(MF_MT_INTERLACE_MODE,
756 hr = decoder_->SetInputType(0, media_type, 0); // No flags
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
H A Dmediastreamsignaling.cc596 cricket::MediaType media_type,
598 TrackInfos* current_tracks = GetRemoteTracks(media_type);
608 OnRemoteTrackRemoved(info.stream_label, info.track_id, media_type);
637 OnRemoteTrackSeen(stream_label, track_id, it->first_ssrc(), media_type);
645 cricket::MediaType media_type) {
648 if (media_type == cricket::MEDIA_TYPE_AUDIO) {
652 } else if (media_type == cricket::MEDIA_TYPE_VIDEO) {
664 cricket::MediaType media_type) {
667 if (media_type == cricket::MEDIA_TYPE_AUDIO) {
675 } else if (media_type
594 UpdateRemoteStreamsList( const cricket::StreamParamsVec& streams, cricket::MediaType media_type, StreamCollection* new_streams) argument
642 OnRemoteTrackSeen(const std::string& stream_label, const std::string& track_id, uint32 ssrc, cricket::MediaType media_type) argument
661 OnRemoteTrackRemoved( const std::string& stream_label, const std::string& track_id, cricket::MediaType media_type) argument
688 RejectRemoteTracks(cricket::MediaType media_type) argument
773 GetLocalTracks( cricket::MediaType media_type) argument
782 UpdateLocalTracks( const std::vector<cricket::StreamParams>& streams, cricket::MediaType media_type) argument
822 OnLocalTrackSeen( const std::string& stream_label, const std::string& track_id, uint32 ssrc, cricket::MediaType media_type) argument
855 OnLocalTrackRemoved( const std::string& stream_label, const std::string& track_id, uint32 ssrc, cricket::MediaType media_type) argument
[all...]
H A Dwebrtcsdp.cc243 const MediaType media_type,
249 const MediaType media_type,
252 const MediaType media_type,
279 const MediaType media_type,
299 const MediaType media_type,
304 const MediaType media_type,
312 const MediaType media_type,
1157 const MediaType media_type,
1181 if (media_type == cricket::MEDIA_TYPE_AUDIO)
1183 else if (media_type
1155 BuildMediaDescription(const ContentInfo* content_info, const TransportInfo* transport_info, const MediaType media_type, const std::vector<Candidate>& candidates, std::string* message) argument
1358 BuildRtpContentAttributes( const MediaContentDescription* media_desc, const MediaType media_type, std::string* message) argument
1632 BuildRtpMap(const MediaContentDescription* media_desc, const MediaType media_type, std::string* message) argument
2101 ParseContentDescription(const std::string& message, const MediaType media_type, int mline_index, const std::string& protocol, const std::vector<int>& codec_preference, size_t* pos, std::string* content_name, TransportDescription* transport, std::vector<JsepIceCandidate*>* candidates, webrtc::SdpParseError* error) argument
2446 ParseContent(const std::string& message, const MediaType media_type, int mline_index, const std::string& protocol, const std::vector<int>& codec_preference, size_t* pos, std::string* content_name, MediaContentDescription* media_desc, TransportDescription* transport, std::vector<JsepIceCandidate*>* candidates, SdpParseError* error) argument
2888 ParseRtpmapAttribute(const std::string& line, const MediaType media_type, const std::vector<int>& codec_preference, MediaContentDescription* media_desc, SdpParseError* error) argument
3003 ParseFmtpAttributes(const std::string& line, const MediaType media_type, MediaContentDescription* media_desc, SdpParseError* error) argument
3058 ParseRtcpFbAttribute(const std::string& line, const MediaType media_type, MediaContentDescription* media_desc, SdpParseError* error) argument
[all...]
/external/chromium_org/third_party/libjingle/source/talk/session/media/
H A Dmediasession_unittest.cc187 MediaType media_type) {
190 return mdesc && mdesc->type() == media_type;
186 IsMediaContentOfType(const ContentInfo* content, MediaType media_type) argument
H A Dmediasession.cc77 MediaType media_type) {
84 return mdesc && mdesc->type() == media_type;
430 // media_type to content_description.
434 MediaType media_type,
463 if (stream_it->type != media_type)
1765 MediaType media_type) {
1768 if (IsMediaContentOfType(&*content, media_type)) {
1788 MediaType media_type) {
1792 return GetFirstMediaContent(sdesc->contents(), media_type);
1808 const SessionDescription* sdesc, MediaType media_type) {
76 IsMediaContentOfType(const ContentInfo* content, MediaType media_type) argument
433 AddStreamParams( MediaType media_type, const MediaSessionOptions::Streams& streams, StreamParamsVec* current_streams, MediaContentDescriptionImpl<C>* content_description, const bool add_legacy_stream) argument
1764 GetFirstMediaContent(const ContentInfos& contents, MediaType media_type) argument
1787 GetFirstMediaContent(const SessionDescription* sdesc, MediaType media_type) argument
1807 GetFirstMediaContentDescription( const SessionDescription* sdesc, MediaType media_type) argument
1832 GetMediaChannelNameFromComponent( int component, MediaType media_type, std::string* channel_name) argument
1880 GetMediaTypeFromChannelName( const std::string& channel_name, MediaType* media_type) argument
[all...]
/external/bluetooth/bluedroid/stack/include/
H A Davdt_api.h252 UINT8 media_type; /* Media type */ member in struct:__anon1310
406 UINT8 media_type; /* Media type */ member in struct:__anon1320

Completed in 1642 milliseconds