From 7d651ec877927e0887da48ce441e5c5158e1f34f Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Fri, 28 Jul 2017 14:44:03 +0100 Subject: [PATCH] Fix failing test due to header differences. --- test/ffmpeg_encoder_test.cc | 5 +++- test/test.cc | 54 +++++++++++++++++++++++++++++++++++++ test/test.h | 1 + 3 files changed, 59 insertions(+), 1 deletion(-) diff --git a/test/ffmpeg_encoder_test.cc b/test/ffmpeg_encoder_test.cc index c13e991b0..4af823852 100644 --- a/test/ffmpeg_encoder_test.cc +++ b/test/ffmpeg_encoder_test.cc @@ -134,5 +134,8 @@ BOOST_AUTO_TEST_CASE (ffmpeg_encoder_basic_test_mixdown) FFmpegEncoder encoder (film, job, "build/test/ffmpeg_encoder_basic_test_mixdown.mp4", FFmpegEncoder::FORMAT_H264, true); encoder.go (); - check_file ("build/test/ffmpeg_encoder_basic_test_mixdown.mp4", "test/data/ffmpeg_encoder_basic_test_mixdown.mp4"); + /* Skip the first video packet when checking as it contains x264 options which can vary between machines + (e.g. number of threads used for encoding). + */ + check_ffmpeg ("build/test/ffmpeg_encoder_basic_test_mixdown.mp4", "test/data/ffmpeg_encoder_basic_test_mixdown.mp4", 0); } diff --git a/test/test.cc b/test/test.cc index 089392ff9..b02fa99c9 100644 --- a/test/test.cc +++ b/test/test.cc @@ -38,6 +38,9 @@ #include #include #include +extern "C" { +#include +} #define BOOST_TEST_DYN_LINK #define BOOST_TEST_MODULE dcpomatic_test #include @@ -388,3 +391,54 @@ write_image (shared_ptr image, boost::filesystem::path file, string Magick::Image m (image->size().width, image->size().height, format.c_str(), CharPixel, (void *) image->data()[0]); m.write (file.string ()); } + +class Reader +{ +public: + Reader (boost::filesystem::path file) + { + format_context = avformat_alloc_context (); + BOOST_REQUIRE (format_context); + BOOST_REQUIRE (avformat_open_input (&format_context, file.string().c_str(), 0, 0) >= 0); + BOOST_REQUIRE (avformat_find_stream_info (format_context, 0) >= 0); + } + + ~Reader () + { + avformat_close_input (&format_context); + } + + AVFormatContext* format_context; +}; + + +void +check_ffmpeg (boost::filesystem::path ref, boost::filesystem::path check, int skip_packet_stream) +{ + Reader ref_r (ref); + Reader check_r (check); + + BOOST_REQUIRE_EQUAL (ref_r.format_context->nb_streams, check_r.format_context->nb_streams); + + AVPacket ref_p; + AVPacket check_p; + + bool skipped = false; + + while (true) { + int p = av_read_frame (ref_r.format_context, &ref_p); + int q = av_read_frame (check_r.format_context, &check_p); + if (ref_p.stream_index == skip_packet_stream && check_p.stream_index == skip_packet_stream && !skipped) { + skipped = true; + continue; + } + BOOST_REQUIRE_EQUAL (p, q); + BOOST_REQUIRE (p == 0 || p == AVERROR_EOF); + if (p == AVERROR_EOF) { + break; + } + + BOOST_REQUIRE_EQUAL (ref_p.buf->size, check_p.buf->size); + BOOST_REQUIRE_EQUAL (memcmp (ref_p.buf->data, check_p.buf->data, ref_p.buf->size), 0); + } +} diff --git a/test/test.h b/test/test.h index 94b15a199..bb70cd812 100644 --- a/test/test.h +++ b/test/test.h @@ -33,6 +33,7 @@ extern void check_wav_file (boost::filesystem::path ref, boost::filesystem::path extern void check_mxf_audio_file (boost::filesystem::path ref, boost::filesystem::path check); extern void check_xml (boost::filesystem::path, boost::filesystem::path, std::list); extern void check_file (boost::filesystem::path, boost::filesystem::path); +extern void check_ffmpeg (boost::filesystem::path, boost::filesystem::path, int skip_packet_stream); extern void check_image (boost::filesystem::path, boost::filesystem::path); extern boost::filesystem::path test_film_dir (std::string); extern void write_image (boost::shared_ptr image, boost::filesystem::path file, std::string format); -- 2.30.2