- video_sink_interface.h - video_source_interface.h - video_source_base.h - packet_transport_internal.h - transport_description_factory.h - rolling_accumulator.h - video_broadcaster.h - ssl_identity.h - adapted_video_track_source.h - string_encode.h No-Iwyu: Too many errors due to tool never being run before (3p libraries like openssl and perfetto confuse the tool too much). Bug: webrtc:42232595 Change-Id: Id2e4ab137515e5d3c9bd7ac0daa5fd39d84e0e10 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/383781 Reviewed-by: Harald Alvestrand <hta@webrtc.org> Commit-Queue: Evan Shrubsole <eshr@webrtc.org> Cr-Commit-Position: refs/heads/main@{#44280}
20 lines
659 B
C++
20 lines
659 B
C++
/*
|
|
* Copyright (c) 2017 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.
|
|
*/
|
|
|
|
#include "api/video/video_source_interface.h"
|
|
|
|
namespace webrtc {
|
|
|
|
VideoSinkWants::VideoSinkWants() = default;
|
|
VideoSinkWants::VideoSinkWants(const VideoSinkWants&) = default;
|
|
VideoSinkWants::~VideoSinkWants() = default;
|
|
|
|
} // namespace webrtc
|