chromium/third_party/webrtc/video/adaptation/video_stream_encoder_resource.cc

/*
 *  Copyright 2020 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 "video/adaptation/video_stream_encoder_resource.h"

#include <algorithm>
#include <utility>

namespace webrtc {

VideoStreamEncoderResource::VideoStreamEncoderResource(std::string name)
    :{}

VideoStreamEncoderResource::~VideoStreamEncoderResource() {}

void VideoStreamEncoderResource::RegisterEncoderTaskQueue(
    TaskQueueBase* encoder_queue) {}

void VideoStreamEncoderResource::SetResourceListener(
    ResourceListener* listener) {}

std::string VideoStreamEncoderResource::Name() const {}

void VideoStreamEncoderResource::OnResourceUsageStateMeasured(
    ResourceUsageState usage_state) {}

TaskQueueBase* VideoStreamEncoderResource::encoder_queue() const {}

}  // namespace webrtc