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.
|
|
|
|
|
*/
|
|
|
|
|
|
2019-01-11 09:11:00 -08:00
|
|
|
#include "media/engine/internal_decoder_factory.h"
|
2016-12-01 00:27:27 -08:00
|
|
|
|
2017-11-09 13:43:42 +01:00
|
|
|
#include "api/video_codecs/sdp_video_format.h"
|
|
|
|
|
#include "api/video_codecs/video_decoder.h"
|
2019-01-11 09:11:00 -08:00
|
|
|
#include "media/base/media_constants.h"
|
2017-09-15 06:47:31 +02:00
|
|
|
#include "test/gtest.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
|
|
|
TEST(InternalDecoderFactory, TestVP8) {
|
2017-11-09 13:43:42 +01:00
|
|
|
InternalDecoderFactory factory;
|
|
|
|
|
std::unique_ptr<VideoDecoder> decoder =
|
|
|
|
|
factory.CreateVideoDecoder(SdpVideoFormat(cricket::kVp8CodecName));
|
2016-12-01 00:27:27 -08:00
|
|
|
EXPECT_TRUE(decoder);
|
|
|
|
|
}
|
2017-11-09 13:43:42 +01:00
|
|
|
|
|
|
|
|
} // namespace webrtc
|