This reverts commit 05043e1cef47f33e81bc7ba83b4cc2c407111397. Reason for revert: breaks compilation of .c files Original change's description: > Comment unused variables in implemented functions > > Compiling webrtc with `-Werror=unused-parameters` is failling duo to > those parameters. > Also, it shouldn't harm us to put those in comment for code readability as > well. > > Bug: webrtc:370878648 > Change-Id: I0ab2eafd26e46312e4595f302b92006c9e23d5d2 > Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/364340 > Commit-Queue: Danil Chapovalov <danilchap@webrtc.org> > Reviewed-by: Danil Chapovalov <danilchap@webrtc.org> > Reviewed-by: Harald Alvestrand <hta@webrtc.org> > Cr-Commit-Position: refs/heads/main@{#43157} Bug: webrtc:370878648 Change-Id: I4ea50baa2c3d0d162759c8255171e95c6199ed26 No-Presubmit: true No-Tree-Checks: true No-Try: true Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/364580 Bot-Commit: rubber-stamper@appspot.gserviceaccount.com <rubber-stamper@appspot.gserviceaccount.com> Commit-Queue: Danil Chapovalov <danilchap@webrtc.org> Owners-Override: Danil Chapovalov <danilchap@webrtc.org> Auto-Submit: Danil Chapovalov <danilchap@webrtc.org> Cr-Commit-Position: refs/heads/main@{#43162}
38 lines
1.1 KiB
C++
38 lines
1.1 KiB
C++
/*
|
|
* Copyright (c) 2016 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_SINK_INTERFACE_H_
|
|
#define API_VIDEO_VIDEO_SINK_INTERFACE_H_
|
|
|
|
#include "api/video_track_source_constraints.h"
|
|
|
|
namespace rtc {
|
|
|
|
template <typename VideoFrameT>
|
|
class VideoSinkInterface {
|
|
public:
|
|
virtual ~VideoSinkInterface() = default;
|
|
|
|
virtual void OnFrame(const VideoFrameT& frame) = 0;
|
|
|
|
// Should be called by the source when it discards the frame due to rate
|
|
// limiting.
|
|
virtual void OnDiscardedFrame() {}
|
|
|
|
// Called on the network thread when video constraints change.
|
|
// TODO(crbug/1255737): make pure virtual once downstream project adapts.
|
|
virtual void OnConstraintsChanged(
|
|
const webrtc::VideoTrackSourceConstraints& constraints) {}
|
|
};
|
|
|
|
} // namespace rtc
|
|
|
|
#endif // API_VIDEO_VIDEO_SINK_INTERFACE_H_
|