2016-12-01 00:27:27 -08:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2016 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.
|
|
|
|
|
*/
|
|
|
|
|
|
2017-09-15 06:47:31 +02:00
|
|
|
#ifndef MEDIA_ENGINE_INTERNALDECODERFACTORY_H_
|
|
|
|
|
#define MEDIA_ENGINE_INTERNALDECODERFACTORY_H_
|
2016-12-01 00:27:27 -08:00
|
|
|
|
2017-11-09 13:43:42 +01:00
|
|
|
#include <memory>
|
2016-12-01 00:27:27 -08:00
|
|
|
#include <vector>
|
|
|
|
|
|
2017-11-09 13:43:42 +01:00
|
|
|
#include "api/video_codecs/video_decoder_factory.h"
|
2016-12-01 00:27:27 -08:00
|
|
|
|
2017-11-09 13:43:42 +01:00
|
|
|
namespace webrtc {
|
2016-12-01 00:27:27 -08:00
|
|
|
|
2017-11-09 13:43:42 +01:00
|
|
|
class InternalDecoderFactory : public VideoDecoderFactory {
|
2016-12-01 00:27:27 -08:00
|
|
|
public:
|
2017-11-09 13:43:42 +01:00
|
|
|
std::vector<SdpVideoFormat> GetSupportedFormats() const override;
|
|
|
|
|
std::unique_ptr<VideoDecoder> CreateVideoDecoder(
|
|
|
|
|
const SdpVideoFormat& format) override;
|
2016-12-01 00:27:27 -08:00
|
|
|
};
|
|
|
|
|
|
2017-11-09 13:43:42 +01:00
|
|
|
} // namespace webrtc
|
2016-12-01 00:27:27 -08:00
|
|
|
|
2017-09-15 06:47:31 +02:00
|
|
|
#endif // MEDIA_ENGINE_INTERNALDECODERFACTORY_H_
|