HomeSort by relevance Sort by last modified time
    Searched refs:stream_id (Results 1 - 25 of 230) sorted by null

1 2 3 4 5 6 7 8 910

  /external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
webrtcpassthroughrender.cc 40 explicit PassthroughStream(const uint32_t stream_id)
41 : stream_id_(stream_id),
46 virtual int32_t RenderFrame(const uint32_t stream_id,
51 renderer_->RenderFrame(stream_id, videoFrame);
93 const uint32_t stream_id,
99 if (FindStream(stream_id) != NULL) {
101 << stream_id;
105 PassthroughStream* stream = new PassthroughStream(stream_id);
107 stream_render_map_[stream_id] = stream;
112 const uint32_t stream_id) {
    [all...]
webrtcpassthroughrender.h 70 const uint32_t stream_id,
75 virtual int32_t DeleteIncomingRenderStream(const uint32_t stream_id);
78 const uint32_t stream_id,
82 const uint32_t stream_id,
90 const uint32_t stream_id) {
98 virtual bool HasIncomingRenderStream(const uint32_t stream_id) const;
101 const uint32_t stream_id,
107 const uint32_t stream_id,
113 const uint32_t stream_id);
116 const uint32_t stream_id);
    [all...]
webrtcpassthroughrender_unittest.cc 21 virtual int32_t RenderFrame(const uint32_t stream_id,
24 LOG(INFO) << "RenderFrame stream_id: " << stream_id
44 webrtc::VideoRenderCallback* AddIncomingRenderStream(int stream_id) {
45 return renderer_->AddIncomingRenderStream(stream_id, 0, 0, 0, 0, 0);
48 bool HasIncomingRenderStream(int stream_id) {
49 return renderer_->HasIncomingRenderStream(stream_id);
52 bool DeleteIncomingRenderStream(int stream_id) {
53 return (renderer_->DeleteIncomingRenderStream(stream_id) == 0);
56 bool AddExternalRenderCallback(int stream_id,
    [all...]
  /external/chromium_org/content/browser/renderer_host/media/
audio_renderer_host.h 105 void OnCreateStream(int stream_id,
110 // Play the audio stream referenced by |stream_id|.
111 void OnPlayStream(int stream_id);
113 // Pause the audio stream referenced by |stream_id|.
114 void OnPauseStream(int stream_id);
116 // Close the audio stream referenced by |stream_id|.
117 void OnCloseStream(int stream_id);
119 // Set the volume of the audio stream referenced by |stream_id|.
120 void OnSetVolume(int stream_id, double volume);
125 void DoCompleteCreation(int stream_id);
    [all...]
mock_media_observer.h 35 int stream_id,
47 void(void* host, int stream_id));
49 void(void* host, int stream_id, bool playing));
51 void(void* host, int stream_id, const std::string& status));
53 void(void* host, int stream_id, double volume));
audio_renderer_host.cc 36 int stream_id,
44 int stream_id() const { function in class:content::AudioRendererHost::AudioEntry
89 AudioRendererHost* host, int stream_id, int render_view_id,
95 stream_id_(stream_id),
196 void AudioRendererHost::DoCompleteCreation(int stream_id) {
201 ReportErrorAndClose(stream_id);
205 AudioEntry* const entry = LookupById(stream_id);
207 ReportErrorAndClose(stream_id);
218 ReportErrorAndClose(entry->stream_id());
234 ReportErrorAndClose(entry->stream_id());
    [all...]
audio_input_renderer_host.h 96 void OnCreateStream(int stream_id,
101 // Record the audio input stream referenced by |stream_id|.
102 void OnRecordStream(int stream_id);
104 // Close the audio stream referenced by |stream_id|.
105 void OnCloseStream(int stream_id);
107 // Set the volume of the audio stream referenced by |stream_id|.
108 void OnSetVolume(int stream_id, double volume);
122 void SendErrorMessage(int stream_id);
137 // A helper method to look up a AudioEntry identified by |stream_id|.
139 AudioEntry* LookupById(int stream_id);
    [all...]
audio_input_renderer_host.cc 28 int stream_id; member in struct:content::AudioInputRendererHost::AudioEntry
44 : stream_id(0),
161 Send(new AudioInputMsg_NotifyStreamCreated(entry->stream_id,
200 int stream_id,
207 << "::OnCreateStream(stream_id=" << stream_id
213 if (LookupById(stream_id) != NULL) {
214 SendErrorMessage(stream_id);
234 SendErrorMessage(stream_id);
255 SendErrorMessage(stream_id);
    [all...]
  /external/chromium_org/net/spdy/
spdy_websocket_test_util.h 32 SpdyFrame* ConstructSpdyWebSocketSynStream(int stream_id,
39 SpdyFrame* ConstructSpdyWebSocketSynReply(int stream_id);
44 SpdyStreamId stream_id,
50 SpdyStreamId stream_id,
54 SpdyFrame* ConstructSpdyWebSocketHeadersFrame(int stream_id,
61 SpdyStreamId stream_id,
buffered_spdy_framer.cc 64 void BufferedSpdyFramer::OnSynStream(SpdyStreamId stream_id,
74 control_frame_fields_->stream_id = stream_id;
81 InitHeaderStreaming(stream_id);
84 void BufferedSpdyFramer::OnHeaders(SpdyStreamId stream_id,
90 control_frame_fields_->stream_id = stream_id;
93 InitHeaderStreaming(stream_id);
96 void BufferedSpdyFramer::OnSynReply(SpdyStreamId stream_id,
102 control_frame_fields_->stream_id = stream_id
    [all...]
buffered_spdy_framer.h 34 virtual void OnStreamError(SpdyStreamId stream_id,
38 virtual void OnSynStream(SpdyStreamId stream_id,
47 virtual void OnSynReply(SpdyStreamId stream_id,
52 virtual void OnHeaders(SpdyStreamId stream_id,
57 // |stream_id| The stream receiving data.
63 virtual void OnStreamFrameData(SpdyStreamId stream_id,
80 virtual void OnRstStream(SpdyStreamId stream_id,
88 virtual void OnWindowUpdate(SpdyStreamId stream_id,
92 virtual void OnPushPromise(SpdyStreamId stream_id,
122 virtual void OnSynStream(SpdyStreamId stream_id,
248 SpdyStreamId stream_id; member in struct:net::BufferedSpdyFramer::ControlFrameFields
    [all...]
spdy_protocol.cc 10 SpdyStreamId stream_id) : SpdyFrameWithFinIR(stream_id) {}
14 SpdyDataIR::SpdyDataIR(SpdyStreamId stream_id, const base::StringPiece& data)
15 : SpdyFrameWithFinIR(stream_id) {
19 SpdyDataIR::SpdyDataIR(SpdyStreamId stream_id)
20 : SpdyFrameWithFinIR(stream_id) {}
  /external/chromium/net/tools/flip_server/
sm_interface.h 34 virtual void SetStreamID(uint32 stream_id) = 0;
49 virtual void NewStream(uint32 stream_id, uint32 priority,
51 virtual void SendEOF(uint32 stream_id) = 0;
52 virtual void SendErrorNotFound(uint32 stream_id) = 0;
53 virtual size_t SendSynStream(uint32 stream_id,
55 virtual size_t SendSynReply(uint32 stream_id,
57 virtual void SendDataFrame(uint32 stream_id, const char* data, int64 len,
spdy_interface.h 65 virtual bool OnControlFrameHeaderData(spdy::SpdyStreamId stream_id,
69 virtual void OnStreamFrameData(spdy::SpdyStreamId stream_id,
76 virtual void SetStreamID(uint32 stream_id) {}
90 virtual void NewStream(uint32 stream_id,
94 virtual void SendEOF(uint32 stream_id);
95 virtual void SendErrorNotFound(uint32 stream_id);
96 void SendOKResponse(uint32 stream_id, std::string* output);
97 virtual size_t SendSynStream(uint32 stream_id, const BalsaHeaders& headers);
98 virtual size_t SendSynReply(uint32 stream_id, const BalsaHeaders& headers);
99 virtual void SendDataFrame(uint32 stream_id, const char* data, int64 len
    [all...]
spdy_interface.cc 158 << syn_stream->stream_id() << ")";
193 NewStream(syn_stream->stream_id(),
252 stream_to_smif_[syn_stream->stream_id()] = sm_http_interface;
253 sm_http_interface->SetStreamID(syn_stream->stream_id());
263 reinterpret_cast<const SpdySynReplyControlFrame*>(frame)->stream_id()
271 << rst_stream->stream_id() << ")";
272 client_output_ordering_.RemoveStreamId(rst_stream ->stream_id());
281 bool SpdySM::OnControlFrameHeaderData(spdy::SpdyStreamId stream_id,
292 void SpdySM::OnStreamFrameData(SpdyStreamId stream_id,
294 VLOG(2) << ACCEPTOR_CLIENT_IDENT << "SpdySM: StreamData(" << stream_id
410 VLOG(2) << ACCEPTOR_CLIENT_IDENT << "SpdySM: Sending EOF: " << stream_id; local
484 << stream_id; local
501 << stream_id; local
    [all...]
http_interface.h 70 void SendOKResponse(uint32 stream_id, std::string* output);
88 virtual void SetStreamID(uint32 stream_id);
97 virtual void NewStream(uint32 stream_id, uint32 priority,
99 virtual void SendEOF(uint32 stream_id);
100 virtual void SendErrorNotFound(uint32 stream_id);
101 virtual size_t SendSynStream(uint32 stream_id, const BalsaHeaders& headers);
102 virtual size_t SendSynReply(uint32 stream_id, const BalsaHeaders& headers);
103 virtual void SendDataFrame(uint32 stream_id, const char* data, int64 len,
107 void SendEOFImpl(uint32 stream_id);
108 void SendErrorNotFoundImpl(uint32 stream_id);
    [all...]
streamer_interface.h 47 virtual void SetStreamID(uint32 stream_id) {}
55 virtual void NewStream(uint32 stream_id, uint32 priority,
57 virtual void SendEOF(uint32 stream_id) {}
58 virtual void SendErrorNotFound(uint32 stream_id) {}
59 virtual void SendOKResponse(uint32 stream_id, std::string output) {}
60 virtual size_t SendSynStream(uint32 stream_id, const BalsaHeaders& headers);
61 virtual size_t SendSynReply(uint32 stream_id, const BalsaHeaders& headers);
62 virtual void SendDataFrame(uint32 stream_id, const char* data, int64 len,
71 void SendEOFImpl(uint32 stream_id) {}
72 void SendErrorNotFoundImpl(uint32 stream_id) {}
    [all...]
  /external/chromium_org/net/tools/flip_server/
sm_interface.h 34 virtual void SetStreamID(uint32 stream_id) = 0;
49 virtual void NewStream(uint32 stream_id, uint32 priority,
51 virtual void SendEOF(uint32 stream_id) = 0;
52 virtual void SendErrorNotFound(uint32 stream_id) = 0;
53 virtual size_t SendSynStream(uint32 stream_id,
55 virtual size_t SendSynReply(uint32 stream_id,
57 virtual void SendDataFrame(uint32 stream_id, const char* data, int64 len,
spdy_interface.cc 128 SpdyStreamId stream_id,
135 << stream_id << ")"; local
166 NewStream(stream_id, priority, filename);
190 void SpdySM::OnStreamFrameData(SpdyStreamId stream_id,
194 VLOG(2) << ACCEPTOR_CLIENT_IDENT << "SpdySM: StreamData(" << stream_id
196 StreamToSmif::iterator it = stream_to_smif_.find(stream_id);
198 VLOG(2) << "Dropping frame from unknown stream " << stream_id;
209 void SpdySM::OnSynStream(SpdyStreamId stream_id,
218 int ret = SpdyHandleNewStream(stream_id, priority, headers, http_data,
240 stream_to_smif_[stream_id] = sm_http_interface
253 << stream_id << ")"; local
260 << stream_id << ")"; local
266 << stream_id << ")"; local
371 VLOG(2) << ACCEPTOR_CLIENT_IDENT << "SpdySM: Sending EOF: " << stream_id; local
447 << stream_id; local
464 << stream_id; local
    [all...]
spdy_interface.h 53 int SpdyHandleNewStream(SpdyStreamId stream_id,
61 virtual void OnStreamError(SpdyStreamId stream_id,
64 virtual void OnSynStream(SpdyStreamId stream_id,
73 virtual void OnSynReply(SpdyStreamId stream_id,
78 virtual void OnHeaders(SpdyStreamId stream_id,
83 // |stream_id| The stream receiving data.
88 virtual void OnStreamFrameData(SpdyStreamId stream_id,
107 virtual void OnRstStream(SpdyStreamId stream_id,
115 virtual void OnWindowUpdate(SpdyStreamId stream_id,
119 virtual void OnPushPromise(SpdyStreamId stream_id,
    [all...]
http_interface.h 72 void SendOKResponse(uint32 stream_id, std::string* output);
90 virtual void SetStreamID(uint32 stream_id) OVERRIDE;
99 virtual void NewStream(uint32 stream_id, uint32 priority,
101 virtual void SendEOF(uint32 stream_id) OVERRIDE;
102 virtual void SendErrorNotFound(uint32 stream_id) OVERRIDE;
103 virtual size_t SendSynStream(uint32 stream_id,
105 virtual size_t SendSynReply(uint32 stream_id,
107 virtual void SendDataFrame(uint32 stream_id, const char* data, int64 len,
111 void SendEOFImpl(uint32 stream_id);
112 void SendErrorNotFoundImpl(uint32 stream_id);
    [all...]
streamer_interface.h 48 virtual void SetStreamID(uint32 stream_id) OVERRIDE {}
56 virtual void NewStream(uint32 stream_id, uint32 priority,
58 virtual void SendEOF(uint32 stream_id) OVERRIDE {}
59 virtual void SendErrorNotFound(uint32 stream_id) OVERRIDE {}
60 virtual void SendOKResponse(uint32 stream_id, std::string output) {}
61 virtual size_t SendSynStream(uint32 stream_id,
63 virtual size_t SendSynReply(uint32 stream_id,
65 virtual void SendDataFrame(uint32 stream_id, const char* data, int64 len,
74 void SendEOFImpl(uint32 stream_id) {}
75 void SendErrorNotFoundImpl(uint32 stream_id) {}
    [all...]
  /external/chromium_org/content/test/plugin/
plugin_get_javascript_url2_test.cc 55 unsigned long stream_id = reinterpret_cast<unsigned long>(stream->notifyData); local
56 switch (stream_id) {
83 unsigned long stream_id = reinterpret_cast<unsigned long>(stream->notifyData); local
84 switch (stream_id) {
105 unsigned long stream_id = reinterpret_cast<unsigned long>(stream->notifyData); local
106 switch (stream_id) {
121 unsigned long stream_id = reinterpret_cast<unsigned long>(data); local
122 switch (stream_id) {
  /external/chromium_org/gpu/command_buffer/service/
stream_texture_manager_in_process_android.cc 16 uint32 stream_id)
18 stream_id_(stream_id) {}
54 uint32 stream_id = next_id_++; local
56 new StreamTextureImpl(service_id, stream_id));
62 return stream_id;
81 StreamTextureManagerInProcess::GetSurfaceTexture(uint32 stream_id) {
85 if (it->second->stream_id() == stream_id)
  /external/chromium_org/content/renderer/media/android/
stream_texture_factory_android_impl.cc 24 virtual void BindToCurrentThread(int32 stream_id) OVERRIDE;
63 void StreamTextureProxyImpl::BindToCurrentThread(int stream_id) {
65 host_->Initialize(stream_id);
99 void StreamTextureFactoryImpl::EstablishPeer(int32 stream_id, int player_id) {
102 new GpuChannelMsg_EstablishStreamTexture(stream_id, view_id_, player_id));
110 unsigned stream_id = 0; local
113 stream_id = context_->createStreamTextureCHROMIUM(*texture_id);
122 return stream_id;
136 int32 stream_id, const gfx::Size& size) {
137 channel_->Send(new GpuChannelMsg_SetStreamTextureSize(stream_id, size))
    [all...]

Completed in 741 milliseconds

1 2 3 4 5 6 7 8 910