2012-05-17 02:27:00 +04:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2012 The WebM 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.
|
|
|
|
*/
|
2012-08-31 00:43:15 +04:00
|
|
|
#include "vpx_config.h"
|
2012-05-17 02:27:00 +04:00
|
|
|
#include "test/encode_test_driver.h"
|
2012-08-31 00:43:15 +04:00
|
|
|
#if CONFIG_VP8_DECODER
|
|
|
|
#include "test/decode_test_driver.h"
|
|
|
|
#endif
|
2012-05-17 02:27:00 +04:00
|
|
|
#include "test/video_source.h"
|
|
|
|
#include "third_party/googletest/src/include/gtest/gtest.h"
|
|
|
|
|
|
|
|
namespace libvpx_test {
|
2012-10-02 22:03:09 +04:00
|
|
|
void Encoder::EncodeFrame(VideoSource *video, const unsigned long frame_flags) {
|
2012-05-17 02:27:00 +04:00
|
|
|
if (video->img())
|
2012-10-02 22:03:09 +04:00
|
|
|
EncodeFrameInternal(*video, frame_flags);
|
2012-05-17 02:27:00 +04:00
|
|
|
else
|
|
|
|
Flush();
|
|
|
|
|
|
|
|
// Handle twopass stats
|
|
|
|
CxDataIterator iter = GetCxData();
|
|
|
|
|
|
|
|
while (const vpx_codec_cx_pkt_t *pkt = iter.Next()) {
|
|
|
|
if (pkt->kind != VPX_CODEC_STATS_PKT)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
stats_->Append(*pkt);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Encoder::EncodeFrameInternal(const VideoSource &video,
|
2012-10-02 22:03:09 +04:00
|
|
|
const unsigned long frame_flags) {
|
2012-05-17 02:27:00 +04:00
|
|
|
vpx_codec_err_t res;
|
|
|
|
const vpx_image_t *img = video.img();
|
|
|
|
|
|
|
|
// Handle first frame initialization
|
|
|
|
if (!encoder_.priv) {
|
|
|
|
cfg_.g_w = img->d_w;
|
|
|
|
cfg_.g_h = img->d_h;
|
|
|
|
cfg_.g_timebase = video.timebase();
|
|
|
|
cfg_.rc_twopass_stats_in = stats_->buf();
|
2012-10-02 22:03:09 +04:00
|
|
|
res = vpx_codec_enc_init(&encoder_, &vpx_codec_vp8_cx_algo, &cfg_,
|
|
|
|
init_flags_);
|
2012-05-17 02:27:00 +04:00
|
|
|
ASSERT_EQ(VPX_CODEC_OK, res) << EncoderError();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Handle frame resizing
|
|
|
|
if (cfg_.g_w != img->d_w || cfg_.g_h != img->d_h) {
|
|
|
|
cfg_.g_w = img->d_w;
|
|
|
|
cfg_.g_h = img->d_h;
|
|
|
|
res = vpx_codec_enc_config_set(&encoder_, &cfg_);
|
|
|
|
ASSERT_EQ(VPX_CODEC_OK, res) << EncoderError();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Encode the frame
|
|
|
|
res = vpx_codec_encode(&encoder_,
|
|
|
|
video.img(), video.pts(), video.duration(),
|
2012-10-02 22:03:09 +04:00
|
|
|
frame_flags, deadline_);
|
2012-05-17 02:27:00 +04:00
|
|
|
ASSERT_EQ(VPX_CODEC_OK, res) << EncoderError();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Encoder::Flush() {
|
|
|
|
const vpx_codec_err_t res = vpx_codec_encode(&encoder_, NULL, 0, 0, 0,
|
|
|
|
deadline_);
|
|
|
|
ASSERT_EQ(VPX_CODEC_OK, res) << EncoderError();
|
|
|
|
}
|
|
|
|
|
|
|
|
void EncoderTest::SetMode(TestMode mode) {
|
|
|
|
switch (mode) {
|
|
|
|
case kRealTime:
|
|
|
|
deadline_ = VPX_DL_REALTIME;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case kOnePassGood:
|
|
|
|
case kTwoPassGood:
|
|
|
|
deadline_ = VPX_DL_GOOD_QUALITY;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case kOnePassBest:
|
|
|
|
case kTwoPassBest:
|
|
|
|
deadline_ = VPX_DL_BEST_QUALITY;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
ASSERT_TRUE(false) << "Unexpected mode " << mode;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mode == kTwoPassGood || mode == kTwoPassBest)
|
|
|
|
passes_ = 2;
|
|
|
|
else
|
|
|
|
passes_ = 1;
|
|
|
|
}
|
2012-08-31 00:43:15 +04:00
|
|
|
// The function should return "true" most of the time, therefore no early
|
|
|
|
// break-out is implemented within the match checking process.
|
|
|
|
static bool compare_img(const vpx_image_t *img1,
|
|
|
|
const vpx_image_t *img2) {
|
|
|
|
bool match = (img1->fmt == img2->fmt) &&
|
|
|
|
(img1->d_w == img2->d_w) &&
|
|
|
|
(img1->d_h == img2->d_h);
|
|
|
|
|
|
|
|
const unsigned int width_y = img1->d_w;
|
|
|
|
const unsigned int height_y = img1->d_h;
|
|
|
|
unsigned int i;
|
|
|
|
for (i = 0; i < height_y; ++i)
|
|
|
|
match = ( memcmp(img1->planes[VPX_PLANE_Y] + i * img1->stride[VPX_PLANE_Y],
|
|
|
|
img2->planes[VPX_PLANE_Y] + i * img2->stride[VPX_PLANE_Y],
|
|
|
|
width_y) == 0) && match;
|
|
|
|
const unsigned int width_uv = (img1->d_w + 1) >> 1;
|
|
|
|
const unsigned int height_uv = (img1->d_h + 1) >> 1;
|
|
|
|
for (i = 0; i < height_uv; ++i)
|
|
|
|
match = ( memcmp(img1->planes[VPX_PLANE_U] + i * img1->stride[VPX_PLANE_U],
|
|
|
|
img2->planes[VPX_PLANE_U] + i * img2->stride[VPX_PLANE_U],
|
|
|
|
width_uv) == 0) && match;
|
|
|
|
for (i = 0; i < height_uv; ++i)
|
|
|
|
match = ( memcmp(img1->planes[VPX_PLANE_V] + i * img1->stride[VPX_PLANE_V],
|
|
|
|
img2->planes[VPX_PLANE_V] + i * img2->stride[VPX_PLANE_V],
|
|
|
|
width_uv) == 0) && match;
|
|
|
|
return match;
|
|
|
|
}
|
2012-05-17 02:27:00 +04:00
|
|
|
|
|
|
|
void EncoderTest::RunLoop(VideoSource *video) {
|
2012-08-31 00:43:15 +04:00
|
|
|
#if CONFIG_VP8_DECODER
|
|
|
|
vpx_codec_dec_cfg_t dec_cfg = {0};
|
|
|
|
#endif
|
2012-10-02 20:36:41 +04:00
|
|
|
|
|
|
|
stats_.Reset();
|
|
|
|
|
2012-05-17 02:27:00 +04:00
|
|
|
for (unsigned int pass = 0; pass < passes_; pass++) {
|
2012-08-09 01:16:08 +04:00
|
|
|
last_pts_ = 0;
|
|
|
|
|
2012-05-17 02:27:00 +04:00
|
|
|
if (passes_ == 1)
|
|
|
|
cfg_.g_pass = VPX_RC_ONE_PASS;
|
|
|
|
else if (pass == 0)
|
|
|
|
cfg_.g_pass = VPX_RC_FIRST_PASS;
|
|
|
|
else
|
|
|
|
cfg_.g_pass = VPX_RC_LAST_PASS;
|
|
|
|
|
|
|
|
BeginPassHook(pass);
|
2012-10-02 22:03:09 +04:00
|
|
|
Encoder encoder(cfg_, deadline_, init_flags_, &stats_);
|
2012-08-31 00:43:15 +04:00
|
|
|
#if CONFIG_VP8_DECODER
|
|
|
|
Decoder decoder(dec_cfg);
|
|
|
|
bool has_cxdata = false;
|
|
|
|
#endif
|
2012-05-17 02:27:00 +04:00
|
|
|
bool again;
|
2012-06-23 22:20:41 +04:00
|
|
|
for (again = true, video->Begin(); again; video->Next()) {
|
2012-05-17 02:27:00 +04:00
|
|
|
again = video->img() != NULL;
|
|
|
|
|
|
|
|
PreEncodeFrameHook(video);
|
2012-07-11 02:43:44 +04:00
|
|
|
PreEncodeFrameHook(video, &encoder);
|
2012-10-02 22:03:09 +04:00
|
|
|
encoder.EncodeFrame(video, frame_flags_);
|
2012-05-17 02:27:00 +04:00
|
|
|
|
|
|
|
CxDataIterator iter = encoder.GetCxData();
|
|
|
|
|
|
|
|
while (const vpx_codec_cx_pkt_t *pkt = iter.Next()) {
|
|
|
|
again = true;
|
|
|
|
|
|
|
|
if (pkt->kind != VPX_CODEC_CX_FRAME_PKT)
|
|
|
|
continue;
|
2012-08-31 00:43:15 +04:00
|
|
|
#if CONFIG_VP8_DECODER
|
|
|
|
has_cxdata = true;
|
|
|
|
decoder.DecodeFrame((const uint8_t*)pkt->data.frame.buf,
|
|
|
|
pkt->data.frame.sz);
|
|
|
|
#endif
|
2012-08-09 01:16:08 +04:00
|
|
|
ASSERT_GE(pkt->data.frame.pts, last_pts_);
|
|
|
|
last_pts_ = pkt->data.frame.pts;
|
2012-05-17 02:27:00 +04:00
|
|
|
FramePktHook(pkt);
|
|
|
|
}
|
|
|
|
|
2012-08-31 00:43:15 +04:00
|
|
|
#if CONFIG_VP8_DECODER
|
|
|
|
if (has_cxdata) {
|
|
|
|
const vpx_image_t *img_enc = encoder.GetPreviewFrame();
|
|
|
|
DxDataIterator dec_iter = decoder.GetDxData();
|
|
|
|
const vpx_image_t *img_dec = dec_iter.Next();
|
|
|
|
if(img_enc && img_dec) {
|
|
|
|
const bool res = compare_img(img_enc, img_dec);
|
|
|
|
ASSERT_TRUE(res)<< "Encoder/Decoder mismatch found.";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
2012-05-17 02:27:00 +04:00
|
|
|
if (!Continue())
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
EndPassHook();
|
|
|
|
|
|
|
|
if (!Continue())
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} // namespace libvpx_test
|