| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2013 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2013 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_MODULES_DESKTOP_CAPTURE_SCREEN_CAPTURE_FRAME_QUEUE_H_ | 11 #ifndef WEBRTC_MODULES_DESKTOP_CAPTURE_SCREEN_CAPTURE_FRAME_QUEUE_H_ |
| 12 #define WEBRTC_MODULES_DESKTOP_CAPTURE_SCREEN_CAPTURE_FRAME_QUEUE_H_ | 12 #define WEBRTC_MODULES_DESKTOP_CAPTURE_SCREEN_CAPTURE_FRAME_QUEUE_H_ |
| 13 | 13 |
| 14 #include <memory> | 14 #include <memory> |
| 15 | 15 |
| 16 #include "webrtc/rtc_base/constructormagic.h" | 16 #include "webrtc/base/constructormagic.h" |
| 17 // TODO(zijiehe): These headers are not used in this file, but to avoid build | 17 // TODO(zijiehe): These headers are not used in this file, but to avoid build |
| 18 // break in remoting/host. We should add headers in each individual files. | 18 // break in remoting/host. We should add headers in each individual files. |
| 19 #include "webrtc/modules/desktop_capture/desktop_frame.h" // Remove | 19 #include "webrtc/modules/desktop_capture/desktop_frame.h" // Remove |
| 20 #include "webrtc/modules/desktop_capture/shared_desktop_frame.h" // Remove | 20 #include "webrtc/modules/desktop_capture/shared_desktop_frame.h" // Remove |
| 21 | 21 |
| 22 | 22 |
| 23 namespace webrtc { | 23 namespace webrtc { |
| 24 | 24 |
| 25 // Represents a queue of reusable video frames. Provides access to the 'current' | 25 // Represents a queue of reusable video frames. Provides access to the 'current' |
| 26 // frame - the frame that the caller is working with at the moment, and to the | 26 // frame - the frame that the caller is working with at the moment, and to the |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 | 76 |
| 77 static const int kQueueLength = 2; | 77 static const int kQueueLength = 2; |
| 78 std::unique_ptr<FrameType> frames_[kQueueLength]; | 78 std::unique_ptr<FrameType> frames_[kQueueLength]; |
| 79 | 79 |
| 80 RTC_DISALLOW_COPY_AND_ASSIGN(ScreenCaptureFrameQueue); | 80 RTC_DISALLOW_COPY_AND_ASSIGN(ScreenCaptureFrameQueue); |
| 81 }; | 81 }; |
| 82 | 82 |
| 83 } // namespace webrtc | 83 } // namespace webrtc |
| 84 | 84 |
| 85 #endif // WEBRTC_MODULES_DESKTOP_CAPTURE_SCREEN_CAPTURE_FRAME_QUEUE_H_ | 85 #endif // WEBRTC_MODULES_DESKTOP_CAPTURE_SCREEN_CAPTURE_FRAME_QUEUE_H_ |
| OLD | NEW |