chromium/third_party/webrtc/test/pc/e2e/analyzer/video/analyzing_video_sinks_helper.cc

/*
 *  Copyright (c) 2022 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 "test/pc/e2e/analyzer/video/analyzing_video_sinks_helper.h"

#include <memory>
#include <set>
#include <string>
#include <utility>

#include "absl/strings/string_view.h"
#include "api/test/pclf/media_configuration.h"
#include "api/test/video/video_frame_writer.h"
#include "rtc_base/synchronization/mutex.h"

namespace webrtc {
namespace webrtc_pc_e2e {

void AnalyzingVideoSinksHelper::AddConfig(absl::string_view sender_peer_name,
                                          VideoConfig config) {}

absl::optional<std::pair<std::string, VideoConfig>>
AnalyzingVideoSinksHelper::GetPeerAndConfig(absl::string_view stream_label) {}

void AnalyzingVideoSinksHelper::RemoveConfig(absl::string_view stream_label) {}

test::VideoFrameWriter* AnalyzingVideoSinksHelper::AddVideoWriter(
    std::unique_ptr<test::VideoFrameWriter> video_writer) {}

void AnalyzingVideoSinksHelper::CloseAndRemoveVideoWriters(
    std::set<test::VideoFrameWriter*> writers_to_close) {}

void AnalyzingVideoSinksHelper::Clear() {}

}  // namespace webrtc_pc_e2e
}  // namespace webrtc