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

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

Issue 2100083002: Remove a thread checker for a decoder thread from IncomingVideoStream. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 5 months 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
« no previous file with comments | « no previous file | webrtc/common_video/incoming_video_stream.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
(...skipping 24 matching lines...) Expand all
35 35
36 private: 36 private:
37 enum { kEventStartupTimeMs = 10 }; 37 enum { kEventStartupTimeMs = 10 };
38 enum { kEventMaxWaitTimeMs = 100 }; 38 enum { kEventMaxWaitTimeMs = 100 };
39 enum { kFrameRatePeriodMs = 1000 }; 39 enum { kFrameRatePeriodMs = 1000 };
40 40
41 void OnFrame(const VideoFrame& video_frame) override; 41 void OnFrame(const VideoFrame& video_frame) override;
42 42
43 rtc::ThreadChecker main_thread_checker_; 43 rtc::ThreadChecker main_thread_checker_;
44 rtc::ThreadChecker render_thread_checker_; 44 rtc::ThreadChecker render_thread_checker_;
45 rtc::ThreadChecker decoder_thread_checker_;
46 45
47 rtc::CriticalSection buffer_critsect_; 46 rtc::CriticalSection buffer_critsect_;
48 rtc::PlatformThread incoming_render_thread_; 47 rtc::PlatformThread incoming_render_thread_;
49 std::unique_ptr<EventTimerWrapper> deliver_buffer_event_; 48 std::unique_ptr<EventTimerWrapper> deliver_buffer_event_;
50 49
51 rtc::VideoSinkInterface<VideoFrame>* const external_callback_; 50 rtc::VideoSinkInterface<VideoFrame>* const external_callback_;
52 std::unique_ptr<VideoRenderFrames> render_buffers_ 51 std::unique_ptr<VideoRenderFrames> render_buffers_
53 GUARDED_BY(buffer_critsect_); 52 GUARDED_BY(buffer_critsect_);
54 }; 53 };
55 54
56 } // namespace webrtc 55 } // namespace webrtc
57 56
58 #endif // WEBRTC_COMMON_VIDEO_INCLUDE_INCOMING_VIDEO_STREAM_H_ 57 #endif // WEBRTC_COMMON_VIDEO_INCLUDE_INCOMING_VIDEO_STREAM_H_
OLDNEW
« no previous file with comments | « no previous file | webrtc/common_video/incoming_video_stream.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698