Skip to content

Commit

Permalink
fix range problem for 512kb
Browse files Browse the repository at this point in the history
  • Loading branch information
vadosnaprimer committed May 22, 2020
1 parent 1f960e5 commit f49d4f6
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion encode.avs
Original file line number Diff line number Diff line change
Expand Up @@ -371,7 +371,11 @@ hd && last.FrameRate > 60 ? ChangeFPS(60) : 0
halfFPS ? SelectOdd : 0

# YV24 conversion doesn't reduce chroma, so "point" is fine
ConvertToYV24(chromaresample="point", matrix=(hd ? "Rec709" : "PC.601"))
ConvertToYV24(chromaresample="point", matrix=(hd \
? "Rec709" \
: (pass == 0 \
? "Rec601" \
: "PC.601")))

# pass == 1 ? assrender("subtitles.ass") : 0

Expand Down

0 comments on commit f49d4f6

Please sign in to comment.