blob: 6e0c4eb47672101223739297dd3823ff6932657c [file] [log] [blame]
// Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef THIRD_PARTY_BLINK_RENDERER_PLATFORM_PEERCONNECTION_RTC_VIDEO_DECODER_FACTORY_H_
#define THIRD_PARTY_BLINK_RENDERER_PLATFORM_PEERCONNECTION_RTC_VIDEO_DECODER_FACTORY_H_
#include "base/macros.h"
#include "third_party/blink/renderer/platform/peerconnection/gpu_codec_support_waiter.h"
#include "third_party/webrtc/api/video_codecs/video_decoder_factory.h"
#include "third_party/webrtc/modules/video_coding/include/video_codec_interface.h"
namespace webrtc {
class VideoDecoder;
} // namespace webrtc
namespace media {
class DecoderFactory;
class GpuVideoAcceleratorFactories;
} // namespace media
namespace blink {
// TODO(wuchengli): add unittest.
class RTCVideoDecoderFactory : public webrtc::VideoDecoderFactory {
public:
explicit RTCVideoDecoderFactory(
media::GpuVideoAcceleratorFactories* gpu_factories,
media::DecoderFactory* decoder_factory);
~RTCVideoDecoderFactory() override;
// Runs on Chrome_libJingle_WorkerThread. The child thread is blocked while
// this runs.
std::unique_ptr<webrtc::VideoDecoder> CreateVideoDecoder(
const webrtc::SdpVideoFormat& format) override;
std::vector<webrtc::SdpVideoFormat> GetSupportedFormats() const override;
private:
void CheckAndWaitDecoderSupportStatusIfNeeded() const;
media::GpuVideoAcceleratorFactories* gpu_factories_;
media::DecoderFactory* decoder_factory_;
GpuCodecSupportWaiter gpu_codec_support_waiter_;
DISALLOW_COPY_AND_ASSIGN(RTCVideoDecoderFactory);
};
} // namespace blink
#endif // THIRD_PARTY_BLINK_RENDERER_PLATFORM_PEERCONNECTION_RTC_VIDEO_DECODER_FACTORY_H_