mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-12 21:30:45 +01:00

Moves the unified AdaptationReason to the api/ folder. Bug: webrtc:11392 Change-Id: I28782e82ef6cc3ca3b061f65b0bbdc3766df1f9c Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/172583 Commit-Queue: Evan Shrubsole <eshr@google.com> Reviewed-by: Erik Språng <sprang@webrtc.org> Reviewed-by: Niels Moller <nisse@webrtc.org> Reviewed-by: Henrik Boström <hbos@webrtc.org> Cr-Commit-Position: refs/heads/master@{#31084}
20 lines
651 B
C++
20 lines
651 B
C++
/*
|
|
* Copyright (c) 2020 The WebRTC project authors. All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license
|
|
* that can be found in the LICENSE file in the root of the source
|
|
* tree. An additional intellectual property rights grant can be found
|
|
* in the file PATENTS. All contributing project authors may
|
|
* be found in the AUTHORS file in the root of the source tree.
|
|
*/
|
|
|
|
#ifndef API_VIDEO_VIDEO_ADAPTATION_REASON_H_
|
|
#define API_VIDEO_VIDEO_ADAPTATION_REASON_H_
|
|
|
|
namespace webrtc {
|
|
|
|
enum class VideoAdaptationReason { kQuality, kCpu };
|
|
|
|
} // namespace webrtc
|
|
|
|
#endif // API_VIDEO_VIDEO_ADAPTATION_REASON_H_
|