| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2025-03-25 | Adjust filter_notes to also handle the ignore_bv21_smpte flag. | Carl Hetherington | |
| This fixes a problem where the Bv21 SMPTE warning appears in HTML reports. | |||
| 2024-08-17 | Subtitle{,String,Image} -> Text{,String,Image}. | Carl Hetherington | |
| 2024-08-17 | {,Interop,SMPTE}SubtitleAsset -> {,Interop,SMPTE}TextAsset. | Carl Hetherington | |
| 2024-08-17 | Reel{,Interop,SMPTE}SubtitleAsset -> Reel{,Interop,SMPTE}TextAsset. | Carl Hetherington | |
| 2024-04-18 | Rename classes. | Carl Hetherington | |
| sed -i "s/\<PictureAsset/J2KPictureAsset/g" src/*.{cc,h} sed -i "s/\<dcp::PictureAsset/dcp::J2KPictureAsset/g" src/*.{cc,h} test/*.{cc,h} tools/*.cc examples/*.cc sed -i "s/\<MonoPictureAsset/MonoJ2KPictureAsset/g" src/*.{cc,h} tools/*.cc test/*.{cc,h} sed -i "s/\<dcp::MonoPictureAsset/dcp::MonoJ2KPictureAsset/g" src/*.{cc,h} test/*.{cc,h} tools/*.cc examples/*.cc sed -i "s/\<StereoPictureAsset/StereoJ2KPictureAsset/g" src/*.{cc,h} tools/*.cc sed -i "s/\<dcp::StereoPictureAsset/dcp::StereoJ2KPictureAsset/g" src/*.{cc,h} test/*.{cc,h} tools/*.cc examples/*.cc sed -i "s/\<MonoPictureFrame/MonoJ2KPictureFrame/g" src/*.{cc,h} tools/*.cc test/*.{cc,h} sed -i "s/\<dcp::MonoPictureFrame/dcp::MonoJ2KPictureFrame/g" src/*.{cc,h} test/*.{cc,h} tools/*.cc examples/*.cc sed -i "s/\<StereoPictureFrame/StereoJ2KPictureFrame/g" src/*.{cc,h} tools/*.cc sed -i "s/\<dcp::StereoPictureFrame/dcp::StereoJ2KPictureFrame/g" src/*.{cc,h} test/*.{cc,h} tools/*.cc examples/*.cc | |||
| 2024-04-18 | Fix includes. | Carl Hetherington | |
| sed -i "s/#include \"stereo_picture_asset_writer.h\"/#include \"stereo_j2k_picture_asset_writer.h\""/g src/*.{cc,h} sed -i "s/#include \"mono_picture_asset_writer.h\"/#include \"mono_j2k_picture_asset_writer.h\""/g src/*.{cc,h} examples/*.cc sed -i "s/#include \"stereo_picture_asset_reader.h\"/#include \"stereo_j2k_picture_asset_reader.h\""/g src/*.{cc,h} sed -i "s/#include \"mono_picture_asset_reader.h\"/#include \"mono_j2k_picture_asset_reader.h\""/g src/*.{cc,h} test/*.cc examples/*.cc sed -i "s/#include \"stereo_picture_asset.h\"/#include \"stereo_j2k_picture_asset.h\""/g src/*.{cc,h} test/*.cc examples/*.cc sed -i "s/#include \"mono_picture_asset.h\"/#include \"mono_j2k_picture_asset.h\""/g src/*.{cc,h} examples/*.cc sed -i "s/#include \"picture_asset_writer.h\"/#include \"j2k_picture_asset_writer.h\""/g src/*.{cc,h} test/*.cc sed -i "s/#include \"mono_picture_asset_writer.h\"/#include \"mono_j2k_picture_asset_writer.h\""/g src/*.{cc,h} test/*.cc tools/*.cc sed -i "s/#include \"picture_asset.h\"/#include \"j2k_picture_asset.h\""/g src/*.{cc,h} tools/*.cc sed -i "s/#include \"mono_picture_asset.h\"/#include \"mono_j2k_picture_asset.h\""/g src/*.{cc,h} test/*.cc tools/*.cc sed -i "s/#include \"mono_picture_frame.h\"/#include \"mono_j2k_picture_frame.h\""/g src/*.{cc,h} test/*.cc examples/*.cc sed -i "s/#include \"stereo_picture_frame.h\"/#include \"stereo_j2k_picture_frame.h\""/g src/*.{cc,h} sed -i "s/#include \"picture_asset_writer_common.cc\"/#include \"j2k_picture_asset_writer_common.cc\""/g src/*.{cc,h} | |||
| 2023-10-09 | Add wrappers around boost::filesystem methods that handle the | Carl Hetherington | |
| required mangling of long filenames on Windows. Also wrap lots of missing places (e.g. calls to asdcplib, libxml++, libcxml etc.) in dcp::filesystem::fix_long_path(). The idea is to keep paths un-mangled until they we call some filesystem-related API and mangle them at that point. Otherwise we end up serialising mangled names, which seems like it will not end well. Should fix DoM #2623. | |||
| 2023-10-06 | Cleanup: sorting. | Carl Hetherington | |
| 2023-02-26 | Remove LIBDCP_VERSION in favour of dcp::version.v1.8.62 | Carl Hetherington | |
| The former is only set at configure which is a bit confusing, and I can't think of a reason to have both. | |||
| 2021-06-26 | C++11 cleanup. | Carl Hetherington | |
| 2021-01-22 | Assorted c++11 cleanups. | Carl Hetherington | |
| 2021-01-21 | Use enum class for the things in types.h | Carl Hetherington | |
| 2021-01-17 | Make CPL annotation_text optional. | Carl Hetherington | |
| 2021-01-17 | Change subtitle SubtitleAsset API to return const Subtitle pointers; add ↵ | Carl Hetherington | |
| subtitles_in_reel(). | |||
| 2021-01-17 | Replace std::list with std::vector in the API. | Carl Hetherington | |
| 2021-01-08 | std::shared_ptr | Carl Hetherington | |
| 2020-11-02 | Make MonoPictureAsset implement the Data interface. | Carl Hetherington | |
| 2020-09-22 | Fix crashes when static linking due to tricky lifetimecrash | Carl Hetherington | |
| management of ASDCP::DefaultSMPTEDict(). | |||
| 2020-06-19 | Show CPL IDs in dcpinfo. | Carl Hetherington | |
| 2020-04-14 | s/DCPReadError/ReadError/g | Carl Hetherington | |
| 2020-03-16 | Fix misformatting of dcpinfo output. | Carl Hetherington | |
| 2020-03-15 | Fix getopt string. | Carl Hetherington | |
| 2020-03-15 | Allow general restriction of what is output. | Carl Hetherington | |
| 2019-12-22 | Some cleanups; output total time. | Carl Hetherington | |
| 2019-12-22 | Use VerificationNote for non-fatal errors in DCP::read. | Carl Hetherington | |
| 2019-03-18 | Accept that <Duration> and <EntryPoint> are optional, and account for this ↵ | Carl Hetherington | |
| in tests. Also fix tests to reflect <AnnotationText> no longer being filled in with a default value. | |||
| 2018-12-12 | Add duration as H:M:S:F. | Carl Hetherington | |
| 2018-07-07 | SubtitleString -> shared_ptr<Subtitle> | Carl Hetherington | |
| 2018-04-07 | Try to fix Windows build. | Carl Hetherington | |
| 2018-04-07 | Support decryption and decompression of picture assets. | Carl Hetherington | |
| 2018-04-07 | Add optional dump of JPEG2000 picture sizes. | Carl Hetherington | |
| 2018-02-22 | Cope nicely with VFs in dcpinfo. | Carl Hetherington | |
| 2017-07-24 | Allow dcpinfo to read a CPL. | Carl Hetherington | |
| 2017-04-04 | Add some more bits to the dcpinfo. | Carl Hetherington | |
| 2016-09-27 | Small cleanups. | Carl Hetherington | |
| 2016-09-27 | Fix GPL boilerplate in tools/ | Carl Hetherington | |
| 2016-06-01 | Still more licence fixups. | Carl Hetherington | |
| 2015-12-16 | Tidy API; subtitle_asset() -> asset()> | Carl Hetherington | |
| 2015-06-24 | No-op: whitespace. | Carl Hetherington | |
| 2015-06-05 | Initial work on SMPTE subtitles. | Carl Hetherington | |
| 2015-06-05 | MXF -> Asset in lots of places. | Carl Hetherington | |
| 2015-06-05 | Rename some stuff Content -> Asset. | Carl Hetherington | |
| 2015-06-04 | Add halign to SubtitleString's operator<< and use it for dcpinfo. | Carl Hetherington | |
| 2014-12-27 | Rename color -> colour. | Carl Hetherington | |
| 2014-12-14 | Switch subtitle string font specs to be the font ID; split SubtitleContent ↵ | Carl Hetherington | |
| into Interop and SMPTE. | |||
| 2014-07-02 | Tweaks: don't use shared_ptr for dcp::SubtitleString; ↵ | Carl Hetherington | |
| SubtitleContent::write_xml takes a path. | |||
| 2014-05-03 | Assorted test fixes. | Carl Hetherington | |
| 2014-05-03 | Use exceptions to hold errors even in the keep_going case. | Carl Hetherington | |
| 2014-05-03 | Add --keep-going option. | Carl Hetherington | |
| 2014-03-18 | Merge master. | Carl Hetherington | |
