2014-01-14 08:48:20 +01:00
|
|
|
#include <gtest/gtest.h>
|
|
|
|
#include "codec_def.h"
|
|
|
|
#include "utils/HashFunctions.h"
|
2014-01-18 12:31:54 +01:00
|
|
|
#include "utils/BufferedData.h"
|
|
|
|
#include "utils/InputStream.h"
|
2014-01-14 08:48:20 +01:00
|
|
|
#include "BaseDecoderTest.h"
|
|
|
|
#include "BaseEncoderTest.h"
|
|
|
|
|
|
|
|
static void UpdateHashFromFrame(const SFrameBSInfo& info, SHA_CTX* ctx) {
|
|
|
|
for (int i = 0; i < info.iLayerNum; ++i) {
|
|
|
|
const SLayerBSInfo& layerInfo = info.sLayerInfo[i];
|
|
|
|
int layerSize = 0;
|
|
|
|
for (int j = 0; j < layerInfo.iNalCount; ++j) {
|
|
|
|
layerSize += layerInfo.iNalLengthInByte[j];
|
|
|
|
}
|
|
|
|
SHA1_Update(ctx, layerInfo.pBsBuf, layerSize);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-18 12:31:54 +01:00
|
|
|
static void WritePlaneBuffer(BufferedData* buf, const uint8_t* plane,
|
2014-01-14 08:48:20 +01:00
|
|
|
int width, int height, int stride) {
|
|
|
|
for (int i = 0; i < height; i++) {
|
2014-01-18 12:31:54 +01:00
|
|
|
if (!buf->Push(plane, width)) {
|
|
|
|
FAIL() << "unable to allocate memory";
|
|
|
|
}
|
2014-01-14 08:48:20 +01:00
|
|
|
plane += stride;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct DecodeEncodeFileParam {
|
|
|
|
const char* fileName;
|
|
|
|
const char* hashStr;
|
|
|
|
int width;
|
|
|
|
int height;
|
|
|
|
float frameRate;
|
|
|
|
};
|
|
|
|
|
|
|
|
class DecodeEncodeTest : public ::testing::TestWithParam<DecodeEncodeFileParam>,
|
|
|
|
public BaseDecoderTest, public BaseDecoderTest::Callback,
|
2014-01-18 12:31:54 +01:00
|
|
|
public BaseEncoderTest , public BaseEncoderTest::Callback,
|
|
|
|
public InputStream {
|
2014-01-14 08:48:20 +01:00
|
|
|
public:
|
|
|
|
virtual void SetUp() {
|
|
|
|
BaseDecoderTest::SetUp();
|
|
|
|
if (HasFatalFailure()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
BaseEncoderTest::SetUp();
|
|
|
|
if (HasFatalFailure()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
SHA1_Init(&ctx_);
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual void TearDown() {
|
|
|
|
BaseDecoderTest::TearDown();
|
|
|
|
BaseEncoderTest::TearDown();
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual void onDecodeFrame(const Frame& frame) {
|
|
|
|
const Plane& y = frame.y;
|
|
|
|
const Plane& u = frame.u;
|
|
|
|
const Plane& v = frame.v;
|
2014-01-18 12:31:54 +01:00
|
|
|
WritePlaneBuffer(&buf_, y.data, y.width, y.height, y.stride);
|
|
|
|
WritePlaneBuffer(&buf_, u.data, u.width, u.height, u.stride);
|
|
|
|
WritePlaneBuffer(&buf_, v.data, v.width, v.height, v.stride);
|
2014-01-14 08:48:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
virtual void onEncodeFrame(const SFrameBSInfo& frameInfo) {
|
|
|
|
UpdateHashFromFrame(frameInfo, &ctx_);
|
|
|
|
}
|
|
|
|
|
2014-01-18 12:31:54 +01:00
|
|
|
virtual int read(void* ptr, size_t len) {
|
|
|
|
while (buf_.Length() < len) {
|
|
|
|
bool hasNext = DecodeNextFrame(this);
|
|
|
|
if (HasFatalFailure()) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
if (!hasNext) {
|
|
|
|
if (buf_.Length() == 0) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return buf_.Pop(static_cast<uint8_t*>(ptr), len);
|
|
|
|
}
|
|
|
|
|
2014-01-14 08:48:20 +01:00
|
|
|
protected:
|
|
|
|
SHA_CTX ctx_;
|
2014-01-18 12:31:54 +01:00
|
|
|
BufferedData buf_;
|
2014-01-14 08:48:20 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
TEST_P(DecodeEncodeTest, CompareOutput) {
|
|
|
|
DecodeEncodeFileParam p = GetParam();
|
|
|
|
|
2014-01-18 12:31:54 +01:00
|
|
|
ASSERT_TRUE(Open(p.fileName));
|
|
|
|
EncodeStream(this, p.width, p.height, p.frameRate, this);
|
2014-01-14 08:48:20 +01:00
|
|
|
unsigned char digest[SHA_DIGEST_LENGTH];
|
|
|
|
SHA1_Final(digest, &ctx_);
|
|
|
|
if (!HasFatalFailure()) {
|
|
|
|
ASSERT_TRUE(CompareHash(digest, p.hashStr));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static const DecodeEncodeFileParam kFileParamArray[] = {
|
2014-01-18 02:54:12 +01:00
|
|
|
{"res/test_vd_1d.264", "41c672107cfe9e8e8a67b5d08cbd701f6c982ccd", 320, 192, 12.0f},
|
|
|
|
{"res/test_vd_rc.264", "d546ea7c671b42503f8a46ba50bef2a3eaca4c5a", 320, 192, 12.0f},
|
2014-01-14 08:48:20 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
INSTANTIATE_TEST_CASE_P(DecodeEncodeFile, DecodeEncodeTest,
|
|
|
|
::testing::ValuesIn(kFileParamArray));
|