Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions fluster/decoders/ffmpeg.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,10 @@ def decode(
elif self.ffmpeg_codec:
command.extend(["-codec", self.ffmpeg_codec])

# Disable film grain synthesis for Vulkan AV1 decoding as it is not mandatory.
if self.codec == Codec.AV1 and self.api == "Vulkan":
command.extend(["-export_side_data", "film_grain"])

# Input file
command.extend(["-i", input_filepath])

Expand Down