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
|
|
|
*/
|
|
|
|
|
|
2012-09-20 20:49:12 +00:00
|
|
|
#ifndef WEBRTC_MODULES_VIDEO_CODING_CODECS_VP8_INCLUDE_VP8_H_
|
|
|
|
|
#define WEBRTC_MODULES_VIDEO_CODING_CODECS_VP8_INCLUDE_VP8_H_
|
2011-07-07 08:21:25 +00:00
|
|
|
|
2015-11-18 22:00:21 +01:00
|
|
|
#include "webrtc/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:
|
|
|
|
|
static VP8Encoder* Create();
|
|
|
|
|
|
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:
|
|
|
|
|
static VP8Decoder* Create();
|
|
|
|
|
|
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
|
|
|
|
2015-12-21 03:04:49 -08:00
|
|
|
#endif // WEBRTC_MODULES_VIDEO_CODING_CODECS_VP8_INCLUDE_VP8_H_
|