summaryrefslogtreecommitdiff
path: root/src/lib
AgeCommit message (Collapse)Author
2022-10-24Hopefully fix crash when the same frame is encoded twice.prores-debugCarl Hetherington
Previously if some frame X was passed to the encoder twice I think this would happen: X1 written; X stored to _pending_images X2 written; _pending_images remains the same X1 encode finishes; X is discarded from _pending_images Data for X2 is read by the encoder but was just freed I think this might have resulted in intermittent crashes, which were fairly common in the 2.17.x branch with the test ffmpeg_encoder_prores_regression_1 But I didn't conclusively prove it.
2022-10-19Change how video timing is done.Carl Hetherington
This commit changes the approach with video timing. Previously, we would (more-or-less) try to use every video frame from the content in the output, hoping that they come at a constant frame rate. This is not always the case, however. Here we preserve the PTS of video frames, and then when one arrives we output whatever DCP video frames we can (at the regular DCP frame rate). Hopefully this will solve a range of sync problems, but it could also introduce new ones.
2022-10-19Add operator* for Time and int.Carl Hetherington
2022-10-19Return AVERROR_EOF from the avio_read method when appropriate.Carl Hetherington
2022-10-19Fix FFmpegExaminer termination condition when there is no video;Carl Hetherington
it's hard to see how this ever worked.
2022-10-19Bump ffmpeg to 5.1.2 "Riemann"Carl Hetherington
2022-10-19Normalise XML attribute names to be camelCase (#2241).Carl Hetherington
2022-10-19Use 2.18.x subdirectory for configuration.Carl Hetherington
2022-10-19Extract Collator class.Carl Hetherington
2022-10-18Fix dark mode for release notes.Carl Hetherington
2022-10-18Add VideoFilterGraph::process for Image.Carl Hetherington
2022-10-18Cleanup: some const-correctness.Carl Hetherington
2022-10-18Extract VideoFilterGraphSet.Carl Hetherington
2022-10-18Remove believed-unnecessary mutex.Carl Hetherington
2022-10-18Support Rec2020 YUV/RGB conversion.Carl Hetherington
2022-10-17Make the _film member of Player a weak_ptr.Carl Hetherington
2022-10-17Remove some more unnecessary use of shared_ptr.Carl Hetherington
2022-10-17Remove some unnecessary use of shared_ptr.Carl Hetherington
2022-10-14Add some missing change signals in the Player.Carl Hetherington
2022-10-14Cleanup: use ChangeSignaller in player.Carl Hetherington
2022-10-14Add a comment.Carl Hetherington
2022-10-14Use a plain declaration rather than a shared_ptr.Carl Hetherington
2022-10-14Cleanup: add header guards.Carl Hetherington
2022-10-14Save and restore sash positions in the main DoM.Carl Hetherington
2022-10-13Ignore deprecation of SCP API in libssh; we still want to support it (for ↵Carl Hetherington
now at least).
2022-10-05Add contains_assetmap()Carl Hetherington
2022-10-01Cleanup: remove unnecessary ifCarl Hetherington
2022-10-01Cleanup: replace very short but long-lasting variable name.Carl Hetherington
2022-10-01Fix checking of frame channels vs stream channels.Carl Hetherington
The comment says that we're handling differences between channel counts in the frame and stream but the code wasn't doing that.
2022-09-27Use EnumIndexedVector in Image.Carl Hetherington
2022-09-27Use EnumIndexedVector in J2KEncoder.Carl Hetherington
2022-09-27Cleanup: sorting things.Carl Hetherington
2022-09-27Use EnumIndexedVector in ReelWriter.Carl Hetherington
2022-09-27Use EnumIndexedVector in Player.Carl Hetherington
2022-09-27Use EnumIndexedVector in DCPExaminer.Carl Hetherington
2022-09-27Use EnumIndexedVector in DCPContent.Carl Hetherington
2022-09-27Add EnumIndexedVector.Carl Hetherington
2022-09-26Provide a similar fix to the one in ff639b3cf30afcc097bfd21d39c8d15f466cadd6Carl Hetherington
for DCPs that contain subtitle files without <Font> tags.
2022-09-25Remove a rather excessive log message.Carl Hetherington
2022-09-23Work around strange build error on Ubuntu 18.04Carl Hetherington
tmp/cc4JuI65.s: Assembler messages: /tmp/cc4JuI65.s:174: Error: symbol `_ZNSt14_Function_base13_Base_managerIUlNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEE_E10_M_managerERSt9_Any_dataRKS9_St18_Manager_operation' is already defined
2022-09-20Fix font_id_map errors when importing DCP subtitles that have noCarl Hetherington
font declarations / tags (#2339).
2022-09-19Fix default placement of SRT (etc.) now that the alignment has changedCarl Hetherington
2022-09-17Fix typo in log message.Carl Hetherington
2022-09-17When emailing multiple addresses, put one in To: and the rest in CC: (#2310).Carl Hetherington
2022-09-17Don't try to send KDM email unless we have a from address.Carl Hetherington
2022-09-17Allow specification of the CPL ID to use in a DCP with _create (#2302).Carl Hetherington
2022-09-17Catch CPLNotFoundError more nicely.Carl Hetherington
2022-09-17Give a better error if a specified CPL does not exist.Carl Hetherington
2022-09-17Add default parameter for the detail in set_error().Carl Hetherington
2022-09-16Fix black borders around the preview in some cases (#2331).Carl Hetherington
We need to round the container size to the nearest multiple of 2 so that cropping subsampled sources does not leave gaps. As far as I can see: - the direction that you round x in doesn't matter - it's better to round y up (if you calculate the error in the resulting ratio in each case).