2011-07-07 08:21:25 +00:00
|
|
|
/*
|
2012-02-02 12:21:47 +00:00
|
|
|
* Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
|
2011-07-07 08:21:25 +00:00
|
|
|
*
|
|
|
|
|
* 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.
|
2012-02-02 12:21:47 +00:00
|
|
|
*
|
2012-09-20 20:49:12 +00:00
|
|
|
* WEBRTC VP8 wrapper interface
|
2011-07-07 08:21:25 +00:00
|
|
|
*/
|
|
|
|
|
|
2017-09-15 06:47:31 +02:00
|
|
|
#ifndef MODULES_VIDEO_CODING_CODECS_VP8_INCLUDE_VP8_H_
|
|
|
|
|
#define MODULES_VIDEO_CODING_CODECS_VP8_INCLUDE_VP8_H_
|
2011-07-07 08:21:25 +00:00
|
|
|
|
2017-09-15 06:47:31 +02:00
|
|
|
#include "modules/video_coding/include/video_codec_interface.h"
|
2011-07-07 08:21:25 +00:00
|
|
|
|
2012-09-20 20:49:12 +00:00
|
|
|
namespace webrtc {
|
2011-12-02 08:34:05 +00:00
|
|
|
|
2012-02-02 12:21:47 +00:00
|
|
|
class VP8Encoder : public VideoEncoder {
|
|
|
|
|
public:
|
2017-11-13 13:02:16 +00:00
|
|
|
static VP8Encoder* Create();
|
2012-02-02 12:21:47 +00:00
|
|
|
|
2015-12-21 03:04:49 -08:00
|
|
|
virtual ~VP8Encoder() {}
|
2012-02-02 12:21:47 +00:00
|
|
|
}; // end of VP8Encoder class
|
|
|
|
|
|
|
|
|
|
class VP8Decoder : public VideoDecoder {
|
|
|
|
|
public:
|
2017-11-13 13:02:16 +00:00
|
|
|
static VP8Decoder* Create();
|
2012-02-02 12:21:47 +00:00
|
|
|
|
2015-12-21 03:04:49 -08:00
|
|
|
virtual ~VP8Decoder() {}
|
2012-02-02 12:21:47 +00:00
|
|
|
}; // end of VP8Decoder class
|
|
|
|
|
} // namespace webrtc
|
2011-07-07 08:21:25 +00:00
|
|
|
|
2017-09-15 06:47:31 +02:00
|
|
|
#endif // MODULES_VIDEO_CODING_CODECS_VP8_INCLUDE_VP8_H_
|