Merge changes I58a5af33,Ied9b0392
[platform/upstream/libvpx.git] / test / decode_test_driver.cc
1 /*
2  *  Copyright (c) 2012 The WebM project authors. All Rights Reserved.
3  *
4  *  Use of this source code is governed by a BSD-style license
5  *  that can be found in the LICENSE file in the root of the source
6  *  tree. An additional intellectual property rights grant can be found
7  *  in the file PATENTS.  All contributing project authors may
8  *  be found in the AUTHORS file in the root of the source tree.
9  */
10 #include "test/codec_factory.h"
11 #include "test/decode_test_driver.h"
12 #include "third_party/googletest/src/include/gtest/gtest.h"
13 #include "test/register_state_check.h"
14 #include "test/video_source.h"
15
16 namespace libvpx_test {
17
18 const char kVP8Name[] = "WebM Project VP8";
19
20 vpx_codec_err_t Decoder::PeekStream(const uint8_t *cxdata, size_t size,
21                                     vpx_codec_stream_info_t *stream_info) {
22   return vpx_codec_peek_stream_info(CodecInterface(),
23                                     cxdata, static_cast<unsigned int>(size),
24                                     stream_info);
25 }
26
27 vpx_codec_err_t Decoder::DecodeFrame(const uint8_t *cxdata, size_t size) {
28   return DecodeFrame(cxdata, size, NULL);
29 }
30
31 vpx_codec_err_t Decoder::DecodeFrame(const uint8_t *cxdata, size_t size,
32                                      void *user_priv) {
33   vpx_codec_err_t res_dec;
34   InitOnce();
35   API_REGISTER_STATE_CHECK(
36       res_dec = vpx_codec_decode(&decoder_,
37                                  cxdata, static_cast<unsigned int>(size),
38                                  user_priv, 0));
39   return res_dec;
40 }
41
42 void DecoderTest::RunLoop(CompressedVideoSource *video,
43                           const vpx_codec_dec_cfg_t &dec_cfg) {
44   Decoder* const decoder = codec_->CreateDecoder(dec_cfg, 0);
45   ASSERT_TRUE(decoder != NULL);
46   const char *codec_name = decoder->GetDecoderName();
47   const bool is_vp8 = strncmp(kVP8Name, codec_name, sizeof(kVP8Name) - 1) == 0;
48
49   // Decode frames.
50   for (video->Begin(); !::testing::Test::HasFailure() && video->cxdata();
51        video->Next()) {
52     PreDecodeFrameHook(*video, decoder);
53
54     vpx_codec_stream_info_t stream_info;
55     stream_info.sz = sizeof(stream_info);
56     const vpx_codec_err_t res_peek = decoder->PeekStream(video->cxdata(),
57                                                          video->frame_size(),
58                                                          &stream_info);
59     if (is_vp8) {
60       /* Vp8's implementation of PeekStream returns an error if the frame you
61        * pass it is not a keyframe, so we only expect VPX_CODEC_OK on the first
62        * frame, which must be a keyframe. */
63       if (video->frame_number() == 0)
64         ASSERT_EQ(VPX_CODEC_OK, res_peek) << "Peek return failed: "
65             << vpx_codec_err_to_string(res_peek);
66     } else {
67       /* The Vp9 implementation of PeekStream returns an error only if the
68        * data passed to it isn't a valid Vp9 chunk. */
69       ASSERT_EQ(VPX_CODEC_OK, res_peek) << "Peek return failed: "
70           << vpx_codec_err_to_string(res_peek);
71     }
72
73     vpx_codec_err_t res_dec = decoder->DecodeFrame(video->cxdata(),
74                                                    video->frame_size());
75     if (!HandleDecodeResult(res_dec, *video, decoder))
76       break;
77
78     DxDataIterator dec_iter = decoder->GetDxData();
79     const vpx_image_t *img = NULL;
80
81     // Get decompressed data
82     while ((img = dec_iter.Next()))
83       DecompressedFrameHook(*img, video->frame_number());
84   }
85   delete decoder;
86 }
87
88 void DecoderTest::RunLoop(CompressedVideoSource *video) {
89   vpx_codec_dec_cfg_t dec_cfg = {0};
90   RunLoop(video, dec_cfg);
91 }
92
93 }  // namespace libvpx_test