Åsa Persson | c5a74ff | 2020-09-20 17:50:00 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2020 The WebRTC project authors. All Rights Reserved. |
| 3 | * |
| 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 |
| 6 | * tree. An additional intellectual property rights grant can be found |
| 7 | * in the file PATENTS. All contributing project authors may |
| 8 | * be found in the AUTHORS file in the root of the source tree. |
| 9 | */ |
| 10 | |
| 11 | #ifndef VIDEO_ALIGNMENT_ADJUSTER_H_ |
| 12 | #define VIDEO_ALIGNMENT_ADJUSTER_H_ |
| 13 | |
| 14 | #include "api/video_codecs/video_encoder.h" |
Jonas Oreland | 6c2dae2 | 2022-09-29 10:28:24 +0200 | [diff] [blame] | 15 | #include "video/config/video_encoder_config.h" |
Åsa Persson | c5a74ff | 2020-09-20 17:50:00 +0200 | [diff] [blame] | 16 | |
| 17 | namespace webrtc { |
| 18 | |
| 19 | class AlignmentAdjuster { |
| 20 | public: |
| 21 | // Returns the resolution alignment requested by the encoder (i.e |
Artem Titov | cfea218 | 2021-08-10 01:22:31 +0200 | [diff] [blame] | 22 | // `EncoderInfo::requested_resolution_alignment` which ensures that delivered |
Åsa Persson | c5a74ff | 2020-09-20 17:50:00 +0200 | [diff] [blame] | 23 | // frames to the encoder are divisible by this alignment). |
| 24 | // |
Artem Titov | cfea218 | 2021-08-10 01:22:31 +0200 | [diff] [blame] | 25 | // If `EncoderInfo::apply_alignment_to_all_simulcast_layers` is enabled, the |
Åsa Persson | c5a74ff | 2020-09-20 17:50:00 +0200 | [diff] [blame] | 26 | // alignment will be adjusted to ensure that each simulcast layer also is |
Artem Titov | ab30d72 | 2021-07-27 16:22:11 +0200 | [diff] [blame] | 27 | // divisible by `requested_resolution_alignment`. The configured scale factors |
| 28 | // `scale_resolution_down_by` may be adjusted to a common multiple to limit |
Åsa Persson | c5a74ff | 2020-09-20 17:50:00 +0200 | [diff] [blame] | 29 | // the alignment value to avoid largely cropped frames and possibly with an |
| 30 | // aspect ratio far from the original. |
Åsa Persson | a24d35e | 2021-01-19 10:25:10 +0100 | [diff] [blame] | 31 | |
Artem Titov | ab30d72 | 2021-07-27 16:22:11 +0200 | [diff] [blame] | 32 | // Note: `max_layers` currently only taken into account when using default |
Åsa Persson | a24d35e | 2021-01-19 10:25:10 +0100 | [diff] [blame] | 33 | // scale factors. |
Åsa Persson | c5a74ff | 2020-09-20 17:50:00 +0200 | [diff] [blame] | 34 | static int GetAlignmentAndMaybeAdjustScaleFactors( |
| 35 | const VideoEncoder::EncoderInfo& info, |
Åsa Persson | a24d35e | 2021-01-19 10:25:10 +0100 | [diff] [blame] | 36 | VideoEncoderConfig* config, |
| 37 | absl::optional<size_t> max_layers); |
Åsa Persson | c5a74ff | 2020-09-20 17:50:00 +0200 | [diff] [blame] | 38 | }; |
| 39 | |
| 40 | } // namespace webrtc |
| 41 | |
| 42 | #endif // VIDEO_ALIGNMENT_ADJUSTER_H_ |