OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2012 The WebM project authors. All Rights Reserved. | 2 * Copyright (c) 2012 The WebM project authors. All Rights Reserved. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license | 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 | 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 | 6 * tree. An additional intellectual property rights grant can be found |
7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
9 */ | 9 */ |
10 #include "test/codec_factory.h" | 10 #include "test/codec_factory.h" |
11 #include "test/decode_test_driver.h" | 11 #include "test/decode_test_driver.h" |
12 #include "third_party/googletest/src/include/gtest/gtest.h" | 12 #include "third_party/googletest/src/include/gtest/gtest.h" |
13 #include "test/register_state_check.h" | 13 #include "test/register_state_check.h" |
14 #include "test/video_source.h" | 14 #include "test/video_source.h" |
15 | 15 |
16 namespace libvpx_test { | 16 namespace libvpx_test { |
17 | 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 |
18 vpx_codec_err_t Decoder::DecodeFrame(const uint8_t *cxdata, size_t size) { | 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) { |
19 vpx_codec_err_t res_dec; | 33 vpx_codec_err_t res_dec; |
20 InitOnce(); | 34 InitOnce(); |
21 REGISTER_STATE_CHECK( | 35 REGISTER_STATE_CHECK( |
22 res_dec = vpx_codec_decode(&decoder_, | 36 res_dec = vpx_codec_decode(&decoder_, |
23 cxdata, static_cast<unsigned int>(size), | 37 cxdata, static_cast<unsigned int>(size), |
24 NULL, 0)); | 38 user_priv, 0)); |
25 return res_dec; | 39 return res_dec; |
26 } | 40 } |
27 | 41 |
28 void DecoderTest::RunLoop(CompressedVideoSource *video) { | 42 void DecoderTest::RunLoop(CompressedVideoSource *video) { |
29 vpx_codec_dec_cfg_t dec_cfg = {0}; | 43 vpx_codec_dec_cfg_t dec_cfg = {0}; |
30 Decoder* const decoder = codec_->CreateDecoder(dec_cfg, 0); | 44 Decoder* const decoder = codec_->CreateDecoder(dec_cfg, 0); |
31 ASSERT_TRUE(decoder != NULL); | 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; |
32 | 48 |
33 // Decode frames. | 49 // Decode frames. |
34 for (video->Begin(); video->cxdata(); video->Next()) { | 50 for (video->Begin(); !::testing::Test::HasFailure() && video->cxdata(); |
| 51 video->Next()) { |
35 PreDecodeFrameHook(*video, decoder); | 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 |
36 vpx_codec_err_t res_dec = decoder->DecodeFrame(video->cxdata(), | 73 vpx_codec_err_t res_dec = decoder->DecodeFrame(video->cxdata(), |
37 video->frame_size()); | 74 video->frame_size()); |
38 if (!HandleDecodeResult(res_dec, *video, decoder)) | 75 if (!HandleDecodeResult(res_dec, *video, decoder)) |
39 break; | 76 break; |
40 | 77 |
41 DxDataIterator dec_iter = decoder->GetDxData(); | 78 DxDataIterator dec_iter = decoder->GetDxData(); |
42 const vpx_image_t *img = NULL; | 79 const vpx_image_t *img = NULL; |
43 | 80 |
44 // Get decompressed data | 81 // Get decompressed data |
45 while ((img = dec_iter.Next())) | 82 while ((img = dec_iter.Next())) |
46 DecompressedFrameHook(*img, video->frame_number()); | 83 DecompressedFrameHook(*img, video->frame_number()); |
47 } | 84 } |
48 | 85 |
49 delete decoder; | 86 delete decoder; |
50 } | 87 } |
51 } // namespace libvpx_test | 88 } // namespace libvpx_test |
OLD | NEW |