X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=tools%2Fdcpinfo.cc;h=6a37be1c1f4941347e1d218a22f9774658e55007;hb=3be26a66645de04c7b220abeebfd2f024990a696;hp=03a755180ec173493eac6357d2a68f7e35570bcf;hpb=d0c41db8b5c3b1548faf6e11562c59a6161e16c6;p=libdcp.git diff --git a/tools/dcpinfo.cc b/tools/dcpinfo.cc index 03a75518..6a37be1c 100644 --- a/tools/dcpinfo.cc +++ b/tools/dcpinfo.cc @@ -31,25 +31,26 @@ files in the program, then also delete it here. */ + +#include "common.h" +#include "compose.hpp" +#include "cpl.h" #include "dcp.h" +#include "decrypted_kdm.h" +#include "encrypted_kdm.h" #include "exceptions.h" -#include "reel.h" -#include "sound_asset.h" +#include "interop_subtitle_asset.h" +#include "mono_picture_asset.h" #include "picture_asset.h" -#include "subtitle_asset.h" +#include "reel.h" #include "reel_picture_asset.h" #include "reel_sound_asset.h" #include "reel_subtitle_asset.h" -#include "subtitle_string.h" -#include "subtitle_image.h" -#include "interop_subtitle_asset.h" #include "smpte_subtitle_asset.h" -#include "mono_picture_asset.h" -#include "encrypted_kdm.h" -#include "decrypted_kdm.h" -#include "cpl.h" -#include "common.h" -#include "compose.hpp" +#include "sound_asset.h" +#include "subtitle_asset.h" +#include "subtitle_image.h" +#include "subtitle_string.h" #include #include #include @@ -58,21 +59,23 @@ #include #include -using std::string; + using std::cerr; using std::cout; +using std::dynamic_pointer_cast; +using std::exception; using std::list; -using std::pair; -using std::min; using std::max; -using std::exception; -using std::vector; -using std::stringstream; +using std::min; +using std::pair; using std::shared_ptr; -using std::dynamic_pointer_cast; +using std::string; +using std::stringstream; +using std::vector; using boost::optional; using namespace dcp; + static void help (string n) {