blob: ffb017ad51d9f171e6cf684c49a3686d42f9a45f [file] [log] [blame]
Patrik Höglund9e194032018-01-04 15:58:20 +01001/*
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_VIDEOSOURCEINTERFACE_H_
12#define API_VIDEOSOURCEINTERFACE_H_
13
14#include <limits>
15
16#include "api/optional.h"
17#include "api/videosinkinterface.h"
18
19namespace 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.
23struct VideoSinkWants {
24 VideoSinkWants();
25 ~VideoSinkWants();
26 // Tells the source whether the sink wants frames with rotation applied.
27 // By default, any rotation must be applied by the sink.
28 bool rotation_applied = false;
29
30 // Tells the source that the sink only wants black frames.
31 bool black_frames = false;
32
33 // Tells the source the maximum number of pixels the sink wants.
34 int max_pixel_count = std::numeric_limits<int>::max();
35 // Tells the source the desired number of pixels the sinks wants. This will
36 // typically be used when stepping the resolution up again when conditions
37 // have improved after an earlier downgrade. The source should select the
38 // closest resolution to this pixel count, but if max_pixel_count is set, it
39 // still sets the absolute upper bound.
40 rtc::Optional<int> target_pixel_count;
41 // Tells the source the maximum framerate the sink wants.
42 int max_framerate_fps = std::numeric_limits<int>::max();
43};
44
45template <typename VideoFrameT>
46class VideoSourceInterface {
47 public:
48 virtual void AddOrUpdateSink(VideoSinkInterface<VideoFrameT>* sink,
49 const VideoSinkWants& wants) = 0;
50 // RemoveSink must guarantee that at the time the method returns,
51 // there is no current and no future calls to VideoSinkInterface::OnFrame.
52 virtual void RemoveSink(VideoSinkInterface<VideoFrameT>* sink) = 0;
53
54 protected:
55 virtual ~VideoSourceInterface() {}
56};
57
58} // namespace rtc
59#endif // API_VIDEOSOURCEINTERFACE_H_