diff options
| author | Carl Hetherington <cth@carlh.net> | 2023-12-10 16:20:51 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2023-12-12 15:03:23 +0100 |
| commit | b4a306418f70cd0f43f1b91a9bb96b1714c0fa25 (patch) | |
| tree | 1fa8b4ff7c15103ebd737c4f1d5fd4ae5a7d5784 /src/lib/ffmpeg_content.cc | |
| parent | 9e142b4410f9b1c703f3f12ced07c45dc2a0db24 (diff) | |
Add a premultiply filter to sources with an alpha channel (#2681).
Diffstat (limited to 'src/lib/ffmpeg_content.cc')
| -rw-r--r-- | src/lib/ffmpeg_content.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/lib/ffmpeg_content.cc b/src/lib/ffmpeg_content.cc index ceebb5572..20fe7776b 100644 --- a/src/lib/ffmpeg_content.cc +++ b/src/lib/ffmpeg_content.cc @@ -299,6 +299,9 @@ FFmpegContent::examine (shared_ptr<const Film> film, shared_ptr<Job> job) _filters.push_back(*Filter::from_id("90anticlock")); } } + if (examiner->has_alpha()) { + _filters.push_back(*Filter::from_id("premultiply")); + } } if (!examiner->audio_streams().empty()) { |
