blob: 995191e3c04f0059edf49359a9c02c5b96cd07d2 [file] [log] [blame]
/*
* Copyright (c) 2014 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.
*
*/
#include "webrtc/modules/video_coding/codecs/vp8/vp8_impl.h"
namespace webrtc {
VP8Encoder* VP8Encoder::Create() {
return new VP8EncoderImpl();
}
VP8Decoder* VP8Decoder::Create() {
return new VP8DecoderImpl();
}
} // namespace webrtc