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
|
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
|
|
2017-11-08 23:26:44 +00:00
|
|
|
#include "media/engine/webrtcvideodecoderfactory.h"
|
2016-12-01 00:27:27 -08:00
|
|
|
|
2017-11-08 23:26:44 +00:00
|
|
|
namespace cricket {
|
2016-12-01 00:27:27 -08:00
|
|
|
|
2017-11-08 23:26:44 +00:00
|
|
|
class InternalDecoderFactory : public WebRtcVideoDecoderFactory {
|
2016-12-01 00:27:27 -08:00
|
|
|
public:
|
2017-11-08 23:26:44 +00:00
|
|
|
InternalDecoderFactory();
|
|
|
|
|
virtual ~InternalDecoderFactory();
|
|
|
|
|
|
|
|
|
|
// WebRtcVideoDecoderFactory implementation.
|
|
|
|
|
webrtc::VideoDecoder* CreateVideoDecoder(
|
|
|
|
|
webrtc::VideoCodecType type) override;
|
|
|
|
|
|
|
|
|
|
void DestroyVideoDecoder(webrtc::VideoDecoder* decoder) override;
|
2016-12-01 00:27:27 -08:00
|
|
|
};
|
|
|
|
|
|
2017-11-08 23:26:44 +00:00
|
|
|
} // namespace cricket
|
2016-12-01 00:27:27 -08:00
|
|
|
|
2017-09-15 06:47:31 +02:00
|
|
|
#endif // MEDIA_ENGINE_INTERNALDECODERFACTORY_H_
|