OLD | NEW |
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 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
169 }; | 169 }; |
170 | 170 |
171 class KeyFrameRequestSender { | 171 class KeyFrameRequestSender { |
172 public: | 172 public: |
173 virtual void RequestKeyFrame() = 0; | 173 virtual void RequestKeyFrame() = 0; |
174 | 174 |
175 protected: | 175 protected: |
176 virtual ~KeyFrameRequestSender() {} | 176 virtual ~KeyFrameRequestSender() {} |
177 }; | 177 }; |
178 | 178 |
179 // Callback used to inform the user of the the desired resolution | |
180 // as subscribed by Media Optimization (Quality Modes) | |
181 class VCMQMSettingsCallback { | |
182 public: | |
183 virtual int32_t SetVideoQMSettings(const uint32_t frameRate, | |
184 const uint32_t width, | |
185 const uint32_t height) = 0; | |
186 | |
187 protected: | |
188 virtual ~VCMQMSettingsCallback() {} | |
189 }; | |
190 | |
191 } // namespace webrtc | 179 } // namespace webrtc |
192 | 180 |
193 #endif // WEBRTC_MODULES_VIDEO_CODING_INCLUDE_VIDEO_CODING_DEFINES_H_ | 181 #endif // WEBRTC_MODULES_VIDEO_CODING_INCLUDE_VIDEO_CODING_DEFINES_H_ |
OLD | NEW |