chromium/media/cast/encoding/vpx_encoder.h

// Copyright 2014 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef MEDIA_CAST_ENCODING_VPX_ENCODER_H_
#define MEDIA_CAST_ENCODING_VPX_ENCODER_H_

#include <stdint.h>

#include "base/memory/raw_ref.h"
#include "base/threading/thread_checker.h"
#include "base/time/time.h"
#include "media/base/feedback_signal_accumulator.h"
#include "media/cast/cast_config.h"
#include "media/cast/common/frame_id.h"
#include "media/cast/encoding/software_video_encoder.h"
#include "third_party/libvpx/source/libvpx/vpx/vpx_encoder.h"
#include "ui/gfx/geometry/size.h"

namespace media {

class VideoEncoderMetricsProvider;
class VideoFrame;

namespace cast {

class VpxEncoder final : public SoftwareVideoEncoder {};

}  // namespace cast
}  // namespace media

#endif  // MEDIA_CAST_ENCODING_VPX_ENCODER_H_