Niels Möller | 0327c2d | 2018-05-21 14:09:31 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2016 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 API_VIDEO_VIDEO_SOURCE_INTERFACE_H_ |
| 12 | #define API_VIDEO_VIDEO_SOURCE_INTERFACE_H_ |
| 13 | |
| 14 | #include <limits> |
| 15 | |
Danil Chapovalov | 0bc58cf | 2018-06-21 13:32:56 +0200 | [diff] [blame] | 16 | #include "absl/types/optional.h" |
Niels Möller | 0327c2d | 2018-05-21 14:09:31 +0200 | [diff] [blame] | 17 | #include "api/video/video_sink_interface.h" |
| 18 | |
| 19 | namespace rtc { |
| 20 | |
| 21 | // VideoSinkWants is used for notifying the source of properties a video frame |
| 22 | // should have when it is delivered to a certain sink. |
| 23 | struct VideoSinkWants { |
| 24 | VideoSinkWants(); |
| 25 | VideoSinkWants(const VideoSinkWants&); |
| 26 | ~VideoSinkWants(); |
| 27 | // Tells the source whether the sink wants frames with rotation applied. |
| 28 | // By default, any rotation must be applied by the sink. |
| 29 | bool rotation_applied = false; |
| 30 | |
| 31 | // Tells the source that the sink only wants black frames. |
| 32 | bool black_frames = false; |
| 33 | |
| 34 | // Tells the source the maximum number of pixels the sink wants. |
| 35 | int max_pixel_count = std::numeric_limits<int>::max(); |
| 36 | // Tells the source the desired number of pixels the sinks wants. This will |
| 37 | // typically be used when stepping the resolution up again when conditions |
| 38 | // have improved after an earlier downgrade. The source should select the |
| 39 | // closest resolution to this pixel count, but if max_pixel_count is set, it |
| 40 | // still sets the absolute upper bound. |
Danil Chapovalov | 0bc58cf | 2018-06-21 13:32:56 +0200 | [diff] [blame] | 41 | absl::optional<int> target_pixel_count; |
Niels Möller | 0327c2d | 2018-05-21 14:09:31 +0200 | [diff] [blame] | 42 | // Tells the source the maximum framerate the sink wants. |
| 43 | int max_framerate_fps = std::numeric_limits<int>::max(); |
| 44 | }; |
| 45 | |
| 46 | template <typename VideoFrameT> |
| 47 | class VideoSourceInterface { |
| 48 | public: |
| 49 | virtual void AddOrUpdateSink(VideoSinkInterface<VideoFrameT>* sink, |
| 50 | const VideoSinkWants& wants) = 0; |
| 51 | // RemoveSink must guarantee that at the time the method returns, |
| 52 | // there is no current and no future calls to VideoSinkInterface::OnFrame. |
| 53 | virtual void RemoveSink(VideoSinkInterface<VideoFrameT>* sink) = 0; |
| 54 | |
| 55 | protected: |
| 56 | // Non-public, since one shouldn't own sources via this interface. |
| 57 | virtual ~VideoSourceInterface() {} |
| 58 | }; |
| 59 | |
| 60 | } // namespace rtc |
| 61 | #endif // API_VIDEO_VIDEO_SOURCE_INTERFACE_H_ |