| /* |
| * libjingle |
| * Copyright 2004--2011, Google Inc. |
| * |
| * Redistribution and use in source and binary forms, with or without |
| * modification, are permitted provided that the following conditions are met: |
| * |
| * 1. Redistributions of source code must retain the above copyright notice, |
| * this list of conditions and the following disclaimer. |
| * 2. Redistributions in binary form must reproduce the above copyright notice, |
| * this list of conditions and the following disclaimer in the documentation |
| * and/or other materials provided with the distribution. |
| * 3. The name of the author may not be used to endorse or promote products |
| * derived from this software without specific prior written permission. |
| * |
| * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED |
| * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF |
| * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO |
| * EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
| * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; |
| * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, |
| * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR |
| * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF |
| * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| */ |
| |
| #include "talk/session/phone/webrtcpassthroughrender.h" |
| |
| #include "talk/base/common.h" |
| #include "talk/base/logging.h" |
| |
| namespace cricket { |
| |
| class PassthroughStream: public webrtc::VideoRenderCallback { |
| public: |
| explicit PassthroughStream(const WebRtc_UWord32 stream_id) |
| : stream_id_(stream_id) { |
| } |
| virtual ~PassthroughStream() { |
| } |
| virtual WebRtc_Word32 RenderFrame(const WebRtc_UWord32 stream_id, |
| webrtc::VideoFrame& videoFrame) { |
| talk_base::CritScope cs(&stream_critical_); |
| // Send frame for rendering directly |
| if (renderer_) { |
| renderer_->RenderFrame(stream_id, videoFrame); |
| } |
| return 0; |
| } |
| WebRtc_Word32 SetRenderer(VideoRenderCallback* renderer) { |
| talk_base::CritScope cs(&stream_critical_); |
| renderer_ = renderer; |
| return 0; |
| } |
| |
| private: |
| WebRtc_UWord32 stream_id_; |
| VideoRenderCallback* renderer_; |
| talk_base::CriticalSection stream_critical_; |
| }; |
| |
| WebRtcPassthroughRender::WebRtcPassthroughRender() |
| : window_(NULL) { |
| } |
| |
| WebRtcPassthroughRender::~WebRtcPassthroughRender() { |
| while (!stream_render_map_.empty()) { |
| PassthroughStream* stream = stream_render_map_.begin()->second; |
| stream_render_map_.erase(stream_render_map_.begin()); |
| delete stream; |
| } |
| } |
| |
| webrtc::VideoRenderCallback* WebRtcPassthroughRender::AddIncomingRenderStream( |
| const WebRtc_UWord32 stream_id, |
| const WebRtc_UWord32 zOrder, |
| const float left, const float top, |
| const float right, const float bottom) { |
| talk_base::CritScope cs(&render_critical_); |
| StreamMap::iterator it; |
| it = stream_render_map_.find(stream_id); |
| if (it != stream_render_map_.end()) |
| return NULL; |
| |
| PassthroughStream* stream = new PassthroughStream(stream_id); |
| // Store the stream |
| stream_render_map_[stream_id] = stream; |
| return stream; |
| } |
| |
| WebRtc_Word32 WebRtcPassthroughRender::DeleteIncomingRenderStream( |
| const WebRtc_UWord32 stream_id) { |
| talk_base::CritScope cs(&render_critical_); |
| StreamMap::iterator it; |
| it = stream_render_map_.find(stream_id); |
| if (it == stream_render_map_.end()) { |
| LOG(LS_WARNING) << "DeleteIncomingRenderStream failed to find stream_id: " |
| << stream_id; |
| return -1; |
| } |
| PassthroughStream* stream = it->second; |
| delete stream; |
| stream_render_map_.erase(it); |
| return 0; |
| } |
| |
| WebRtc_Word32 WebRtcPassthroughRender::AddExternalRenderCallback( |
| const WebRtc_UWord32 stream_id, |
| webrtc::VideoRenderCallback* render_object) { |
| talk_base::CritScope cs(&render_critical_); |
| StreamMap::iterator it; |
| it = stream_render_map_.find(stream_id); |
| if (it == stream_render_map_.end()) { |
| LOG(LS_WARNING) << "AddExternalRenderCallback failed to find stream_id: " |
| << stream_id; |
| return -1; |
| } |
| PassthroughStream* stream = it->second; |
| ASSERT(stream != NULL); |
| return stream->SetRenderer(render_object); |
| } |
| |
| bool WebRtcPassthroughRender::HasIncomingRenderStream( |
| const WebRtc_UWord32 stream_id) const { |
| StreamMap::const_iterator it; |
| it = stream_render_map_.find(stream_id); |
| return (it != stream_render_map_.end()); |
| } |
| |
| webrtc::RawVideoType WebRtcPassthroughRender::PreferredVideoType() const { |
| return webrtc::kVideoI420; |
| } |
| |
| } // namespace cricket |