diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-06-15 17:05:58 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-06-15 17:05:58 +0100 |
| commit | a183c1776cfd020a37d028ebb0f641352f49697b (patch) | |
| tree | db2fdafe7fe071f2e50264317e2c4de6b6806f29 /test | |
| parent | 11d0d8d07917543d6c40a6bb1fe5581ae216f5aa (diff) | |
| parent | 4fe7c89e54205c56f0fba2da24db66734ce23674 (diff) | |
Merge master.
Diffstat (limited to 'test')
| -rw-r--r-- | test/make_black_test.cc | 6 | ||||
| -rw-r--r-- | test/test.cc | 1 |
2 files changed, 7 insertions, 0 deletions
diff --git a/test/make_black_test.cc b/test/make_black_test.cc index c70870915..9bec00651 100644 --- a/test/make_black_test.cc +++ b/test/make_black_test.cc @@ -35,6 +35,9 @@ BOOST_AUTO_TEST_CASE (make_black_test) pix_fmts.push_back (AV_PIX_FMT_YUV444P10LE); pix_fmts.push_back (AV_PIX_FMT_YUV444P10BE); pix_fmts.push_back (AV_PIX_FMT_UYVY422); + pix_fmts.push_back (AV_PIX_FMT_YUVJ420P); + pix_fmts.push_back (AV_PIX_FMT_YUVJ422P); + pix_fmts.push_back (AV_PIX_FMT_YUVJ444P); int N = 0; for (list<AVPixelFormat>::const_iterator i = pix_fmts.begin(); i != pix_fmts.end(); ++i) { @@ -46,6 +49,9 @@ BOOST_AUTO_TEST_CASE (make_black_test) for (int y = 0; y < bar->size().height; ++y) { uint8_t* q = p; for (int x = 0; x < bar->line_size()[0]; ++x) { + if (*q != 0) { + std::cerr << "x=" << x << ", (x%3)=" << (x%3) << "\n"; + } BOOST_CHECK_EQUAL (*q++, 0); } p += bar->stride()[0]; diff --git a/test/test.cc b/test/test.cc index 89cfa56df..b33c06be4 100644 --- a/test/test.cc +++ b/test/test.cc @@ -164,3 +164,4 @@ check_dcp (string ref, string check) #include "job_test.cc" #include "client_server_test.cc" #include "image_test.cc" + |
