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
|
|
|
#include "media/engine/internaldecoderfactory.h"
|
2016-12-01 00:27:27 -08:00
|
|
|
|
2017-09-15 06:47:31 +02:00
|
|
|
#include "test/gtest.h"
|
2016-12-01 00:27:27 -08:00
|
|
|
|
|
|
|
|
TEST(InternalDecoderFactory, TestVP8) {
|
2017-11-08 23:26:44 +00:00
|
|
|
cricket::InternalDecoderFactory factory;
|
|
|
|
|
webrtc::VideoDecoder* decoder =
|
|
|
|
|
factory.CreateVideoDecoder(webrtc::kVideoCodecVP8);
|
2016-12-01 00:27:27 -08:00
|
|
|
EXPECT_TRUE(decoder);
|
2017-11-08 23:26:44 +00:00
|
|
|
factory.DestroyVideoDecoder(decoder);
|
2016-12-01 00:27:27 -08:00
|
|
|
}
|