Searched refs:media_type (Results 1 - 25 of 64) sorted by relevance

123

/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.cc37 media_type(UNKNOWN_EVENT), key_frame(false), target_bitrate(0) {}
47 media_type(UNKNOWN_EVENT) {}
H A Dlogging_defines.h66 EventMediaType media_type; member in struct:media::cast::FrameEvent
92 EventMediaType media_type; member in struct:media::cast::PacketEvent
H A Dreceiver_time_offset_estimator_impl.cc88 frame_event.media_type == AUDIO_EVENT,
94 frame_event.media_type == AUDIO_EVENT,
128 packet_event.media_type == AUDIO_EVENT,
134 packet_event.media_type == AUDIO_EVENT,
/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 Dpin_base_win.h36 virtual bool IsMediaTypeValid(const AM_MEDIA_TYPE* media_type) = 0;
39 virtual bool GetValidMediaType(int index, AM_MEDIA_TYPE* media_type) = 0;
45 STDMETHOD(Connect)(IPin* receive_pin, const AM_MEDIA_TYPE* media_type);
48 const AM_MEDIA_TYPE* media_type);
54 STDMETHOD(ConnectionMediaType)(AM_MEDIA_TYPE* media_type);
62 STDMETHOD(QueryAccept)(const AM_MEDIA_TYPE* media_type);
H A Dsink_input_pin_win.h33 virtual bool IsMediaTypeValid(const AM_MEDIA_TYPE* media_type);
34 virtual bool GetValidMediaType(int index, AM_MEDIA_TYPE* media_type);
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/chromium_org/components/renderer_context_menu/
H A Dcontext_menu_content_type.cc109 params_.media_type == WebContextMenuData::MediaTypeNone &&
129 return params_.media_type == WebContextMenuData::MediaTypeImage;
136 return params_.media_type == WebContextMenuData::MediaTypeVideo;
139 return params_.media_type == WebContextMenuData::MediaTypeAudio;
142 return params_.media_type == WebContextMenuData::MediaTypeCanvas;
145 return params_.media_type == WebContextMenuData::MediaTypePlugin;
149 return params_.media_type == WebContextMenuData::MediaTypeFile;
/external/chromium_org/content/browser/media/
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
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
/external/chromium_org/content/public/common/
H A Dcontext_menu_params.cc18 : media_type(blink::WebContextMenuData::MediaTypeNone),
H A Dcontext_menu_params.h57 blink::WebContextMenuData::MediaType media_type; member in struct:content::ContextMenuParams
/external/chromium_org/media/cast/net/rtcp/
H A Dreceiver_rtcp_event_subscriber.h56 // Returns |true| if events of |event_type| and |media_type|
59 EventMediaType media_type);
H A Dreceiver_rtcp_event_subscriber.cc27 if (ShouldProcessEvent(frame_event.type, frame_event.media_type)) {
53 if (ShouldProcessEvent(packet_event.type, packet_event.media_type)) {
H A Drtcp_builder_unittest.cc215 frame_event.media_type = VIDEO_EVENT;
223 packet_event.media_type = VIDEO_EVENT;
277 frame_event.media_type = VIDEO_EVENT;
285 packet_event.media_type = VIDEO_EVENT;
339 frame_event.media_type = VIDEO_EVENT;
385 frame_event.media_type = VIDEO_EVENT;
442 frame_event.media_type = VIDEO_EVENT;
/external/chromium_org/chrome/renderer/media/
H A Dcast_ipc_dispatcher_unittest.cc40 packet_event.media_type = media::cast::VIDEO_EVENT;
49 frame_event.media_type = media::cast::VIDEO_EVENT;
/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 Dmediastreamsignaling.h296 // |streams|. |media_type| is the type of the |streams| and can be either
301 cricket::MediaType media_type,
311 cricket::MediaType media_type);
319 cricket::MediaType media_type);
322 // tracks of type |media_type|.
323 void RejectRemoteTracks(cricket::MediaType media_type);
341 cricket::MediaType media_type);
352 cricket::MediaType media_type);
363 cricket::MediaType media_type);
/external/chromium_org/chrome/browser/renderer_context_menu/
H A Dcontext_menu_content_type_unittest.cc30 rv.media_type = blink::WebContextMenuData::MediaTypeNone;
47 rv.media_type = blink::WebContextMenuData::MediaTypeImage;
52 rv.media_type = blink::WebContextMenuData::MediaTypeVideo;
57 rv.media_type = blink::WebContextMenuData::MediaTypeAudio;
/external/chromium_org/chrome/common/
H A Dcast_messages.h62 IPC_STRUCT_TRAITS_MEMBER(media_type)
71 IPC_STRUCT_TRAITS_MEMBER(media_type)
/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/bluetooth/bluedroid/stack/include/
H A Da2d_sbc.h124 ** media_type: Indicates Audio, or Multimedia.
134 A2D_API extern tA2D_STATUS A2D_BldSbcInfo(UINT8 media_type, tA2D_SBC_CIE *p_ie,
/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

Completed in 579 milliseconds

123