Build fix.
[dcpomatic.git] / test / time_calculation_test.cc
index 636f452d90fc45abfe05db0775b7fbf0b8b08df3..d0cf63bb28eda8d2b2aff819d8b700e7c4e4f997 100644 (file)
@@ -20,7 +20,7 @@
 
 /** @file  test/time_calculation_test.cc
  *  @brief Test calculation of timings when frame rates change.
- *  @ingroup specific
+ *  @ingroup feature
  */
 
 #include "lib/film.h"
@@ -33,7 +33,7 @@
 
 using std::string;
 using std::list;
-using boost::shared_ptr;
+using std::shared_ptr;
 using namespace dcpomatic;
 
 static string const xml = "<Content>"
@@ -808,5 +808,5 @@ BOOST_AUTO_TEST_CASE (player_time_calculation_test3)
        player->setup_pieces ();
        BOOST_REQUIRE_EQUAL (player->_pieces.size(), 1U);
        piece = player->_pieces.front ();
-       BOOST_CHECK_EQUAL (player->dcp_to_resampled_audio (piece, DCPTime ()), 54143L * 48000);
+       BOOST_CHECK_EQUAL (player->dcp_to_resampled_audio (piece, DCPTime ()), 54143LL * 48000);
 }