Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(32)

Side by Side Diff: webrtc/common_video/include/incoming_video_stream.h

Issue 1419673014: Remove frame time scheduing in IncomingVideoStream (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Rename flag to disable_prerenderer_smoothing Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source 5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
11 #ifndef WEBRTC_COMMON_VIDEO_INCLUDE_INCOMING_VIDEO_STREAM_H_ 11 #ifndef WEBRTC_COMMON_VIDEO_INCLUDE_INCOMING_VIDEO_STREAM_H_
12 #define WEBRTC_COMMON_VIDEO_INCLUDE_INCOMING_VIDEO_STREAM_H_ 12 #define WEBRTC_COMMON_VIDEO_INCLUDE_INCOMING_VIDEO_STREAM_H_
13 13
14 #include "webrtc/base/scoped_ptr.h" 14 #include "webrtc/base/scoped_ptr.h"
15 #include "webrtc/base/thread_annotations.h" 15 #include "webrtc/base/thread_annotations.h"
16 #include "webrtc/common_video/video_render_frames.h" 16 #include "webrtc/common_video/video_render_frames.h"
17 17
18 namespace webrtc { 18 namespace webrtc {
19 class CriticalSectionWrapper; 19 class CriticalSectionWrapper;
20 class EventTimerWrapper; 20 class EventTimerWrapper;
21 class ThreadWrapper; 21 class ThreadWrapper;
22 class VideoRenderer;
22 23
23 class VideoRenderCallback { 24 class VideoRenderCallback {
24 public: 25 public:
25 virtual int32_t RenderFrame(const uint32_t streamId, 26 virtual int32_t RenderFrame(const uint32_t streamId,
26 const VideoFrame& videoFrame) = 0; 27 const VideoFrame& videoFrame) = 0;
27 28
28 protected: 29 protected:
29 virtual ~VideoRenderCallback() {} 30 virtual ~VideoRenderCallback() {}
30 }; 31 };
31 32
32 class IncomingVideoStream : public VideoRenderCallback { 33 class IncomingVideoStream : public VideoRenderCallback {
33 public: 34 public:
34 explicit IncomingVideoStream(uint32_t stream_id); 35 explicit IncomingVideoStream(uint32_t stream_id);
pbos-webrtc 2015/11/23 14:28:05 Can you just have a bool disable_prerender_smoothi
mflodman 2015/11/23 14:43:44 +1, I assume this won't change during the life tim
qiangchen 2015/11/24 00:21:05 Done. But one concern is the compatibility break,
mflodman 2015/11/24 12:21:17 AFAIK this is only used by internal WebRTC code an
36 IncomingVideoStream(uint32_t stream_id, VideoRenderer* renderer);
35 ~IncomingVideoStream(); 37 ~IncomingVideoStream();
36 38
37 // Get callback to deliver frames to the module. 39 // Get callback to deliver frames to the module.
38 VideoRenderCallback* ModuleCallback(); 40 VideoRenderCallback* ModuleCallback();
39 virtual int32_t RenderFrame(const uint32_t stream_id, 41 virtual int32_t RenderFrame(const uint32_t stream_id,
40 const VideoFrame& video_frame); 42 const VideoFrame& video_frame);
41 43
42 // Set callback to the platform dependent code. 44 // Set callback to the platform dependent code.
43 void SetRenderCallback(VideoRenderCallback* render_callback); 45 void SetRenderCallback(VideoRenderCallback* render_callback);
44 46
(...skipping 21 matching lines...) Expand all
66 protected: 68 protected:
67 static bool IncomingVideoStreamThreadFun(void* obj); 69 static bool IncomingVideoStreamThreadFun(void* obj);
68 bool IncomingVideoStreamProcess(); 70 bool IncomingVideoStreamProcess();
69 71
70 private: 72 private:
71 enum { kEventStartupTimeMs = 10 }; 73 enum { kEventStartupTimeMs = 10 };
72 enum { kEventMaxWaitTimeMs = 100 }; 74 enum { kEventMaxWaitTimeMs = 100 };
73 enum { kFrameRatePeriodMs = 1000 }; 75 enum { kFrameRatePeriodMs = 1000 };
74 76
75 uint32_t const stream_id_; 77 uint32_t const stream_id_;
78 VideoRenderer* const renderer_;
76 // Critsects in allowed to enter order. 79 // Critsects in allowed to enter order.
77 const rtc::scoped_ptr<CriticalSectionWrapper> stream_critsect_; 80 const rtc::scoped_ptr<CriticalSectionWrapper> stream_critsect_;
78 const rtc::scoped_ptr<CriticalSectionWrapper> thread_critsect_; 81 const rtc::scoped_ptr<CriticalSectionWrapper> thread_critsect_;
79 const rtc::scoped_ptr<CriticalSectionWrapper> buffer_critsect_; 82 const rtc::scoped_ptr<CriticalSectionWrapper> buffer_critsect_;
80 rtc::scoped_ptr<ThreadWrapper> incoming_render_thread_ 83 rtc::scoped_ptr<ThreadWrapper> incoming_render_thread_
81 GUARDED_BY(thread_critsect_); 84 GUARDED_BY(thread_critsect_);
82 rtc::scoped_ptr<EventTimerWrapper> deliver_buffer_event_; 85 rtc::scoped_ptr<EventTimerWrapper> deliver_buffer_event_;
83 86
84 bool running_ GUARDED_BY(stream_critsect_); 87 bool running_ GUARDED_BY(stream_critsect_);
85 VideoRenderCallback* external_callback_ GUARDED_BY(thread_critsect_); 88 VideoRenderCallback* external_callback_ GUARDED_BY(thread_critsect_);
86 VideoRenderCallback* render_callback_ GUARDED_BY(thread_critsect_); 89 VideoRenderCallback* render_callback_ GUARDED_BY(thread_critsect_);
87 const rtc::scoped_ptr<VideoRenderFrames> render_buffers_ 90 const rtc::scoped_ptr<VideoRenderFrames> render_buffers_
88 GUARDED_BY(buffer_critsect_); 91 GUARDED_BY(buffer_critsect_);
89 92
90 uint32_t incoming_rate_ GUARDED_BY(stream_critsect_); 93 uint32_t incoming_rate_ GUARDED_BY(stream_critsect_);
91 int64_t last_rate_calculation_time_ms_ GUARDED_BY(stream_critsect_); 94 int64_t last_rate_calculation_time_ms_ GUARDED_BY(stream_critsect_);
92 uint16_t num_frames_since_last_calculation_ GUARDED_BY(stream_critsect_); 95 uint16_t num_frames_since_last_calculation_ GUARDED_BY(stream_critsect_);
93 int64_t last_render_time_ms_ GUARDED_BY(thread_critsect_); 96 int64_t last_render_time_ms_ GUARDED_BY(thread_critsect_);
94 VideoFrame temp_frame_ GUARDED_BY(thread_critsect_); 97 VideoFrame temp_frame_ GUARDED_BY(thread_critsect_);
95 VideoFrame start_image_ GUARDED_BY(thread_critsect_); 98 VideoFrame start_image_ GUARDED_BY(thread_critsect_);
96 VideoFrame timeout_image_ GUARDED_BY(thread_critsect_); 99 VideoFrame timeout_image_ GUARDED_BY(thread_critsect_);
97 uint32_t timeout_time_ GUARDED_BY(thread_critsect_); 100 uint32_t timeout_time_ GUARDED_BY(thread_critsect_);
98 }; 101 };
99 102
100 } // namespace webrtc 103 } // namespace webrtc
101 104
102 #endif // WEBRTC_COMMON_VIDEO_INCLUDE_INCOMING_VIDEO_STREAM_H_ 105 #endif // WEBRTC_COMMON_VIDEO_INCLUDE_INCOMING_VIDEO_STREAM_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698