Remove unused variable.
authorCarl Hetherington <cth@carlh.net>
Tue, 17 Oct 2017 21:34:51 +0000 (22:34 +0100)
committerCarl Hetherington <cth@carlh.net>
Tue, 17 Oct 2017 21:34:51 +0000 (22:34 +0100)
test/ffmpeg_encoder_test.cc
test/test.cc
test/test.h

index 4af823852cd0226243bb58dc19ff8b72baa574ad..b931796332321154aa85a909d7a2df7fe0f9a587 100644 (file)
@@ -137,5 +137,5 @@ BOOST_AUTO_TEST_CASE (ffmpeg_encoder_basic_test_mixdown)
        /* 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);
+       check_ffmpeg ("build/test/ffmpeg_encoder_basic_test_mixdown.mp4", "test/data/ffmpeg_encoder_basic_test_mixdown.mp4");
 }
index 1ca06c105584b43baa5d71961f70babe1a6b2639..081a13a8cd93e07de09e5f25034dfa3c6e8c5ed5 100644 (file)
@@ -442,7 +442,7 @@ check_ffmpeg_stream (boost::filesystem::path ref, boost::filesystem::path check,
 }
 
 void
-check_ffmpeg (boost::filesystem::path ref, boost::filesystem::path check, int skip_packet_stream)
+check_ffmpeg (boost::filesystem::path ref, boost::filesystem::path check)
 {
        check_ffmpeg_stream (ref, check, "v");
        check_ffmpeg_stream (ref, check, "a");
index b0fe648f32410cc9c64550e3fd653d2ed55a26b2..96e85051041fcd77681607ca1e185beefc320ac2 100644 (file)
@@ -34,7 +34,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<std::string>);
 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_ffmpeg (boost::filesystem::path, boost::filesystem::path);
 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<const Image> image, boost::filesystem::path file, std::string format);