Hello,
can someone show me the correct settings for clipping RGB to "Limited RGB 16-235"? It should be exactly 16-235.
Is this correct? What else to look for?
[
attachment=3124]
Thank you!
Looking at the histogram should help.

(since you use: Avisynth: Filtering->Avisynth->Misc->Preview->Show Histogram)
Haven't used Avisynth for a while, and I usually don't have to hard clip content, but the settings look fine to me.
You could probably alternatively use something like:
Code:
LoadPlugin("PATH TO Hybrid\64bit\Avisynth\avisynthPlugins\mvtools2.dll")
clp = clp.ConvertToPlanarRGB()
# split the channels
r = mt_lut(clp.ShowRed(), expr="x 16 max 235 min") # everything below 16 will be 16, everything above 235 will be 235
g = mt_lut(clp.ShowGreen(), expr="x 16 max 235 min") # everything below 16 will be 16, everything above 235 will be 235
b = mt_lut(clp.ShowBlue(), expr="x 16 max 235 min") # everything below 16 will be 16, everything above 235 will be 235
# merge the channels
MergeRGB(r, g, b)
# convert back to interleaved RGB
ConvertToRGB24(matrix="PC.601")
in a custom section.
Cu Selur