View Single Post
Old 25th April 2002, 01:47   #18  |  Link
ARDA
Registered User
 
Join Date: Nov 2001
Posts: 291
@Chibi Jasmin
You are right there is not too much information there.As you read in my above post two months ago
I asked help for more information and as nobody answered I had watched more carefully the sources
and could in few words summarize this:

The bug in Bicubic resize with emms call was fixed.

A new filter RGBAdjust has been included (obviously it just work in rgb mode.
Ex:
ConvertToRGB() #if you aren't already working in rgb
RgbAdjust(0.94,0.97,1,0) # the fourth parameter is for alpha channel
ConvertToYUY2() # if you need to convert.

A Greyscale filter has beed added. It just work in YUY2 .To use:
just
Greyscale

The most important change has been done in Sharpen-Blur filter
Many people has reported problems with it in avisynth 5 too.

The new Sharpen filter now includes two parameters ; vertical and horizontal
so if you write something like this
Sharpen (-0.5,0.4)
# you are blurring in vertical direction and sharpenning in horizontal direction
it is interesting to play with that values.I must confess I don't like too much how it works but
by now it is the only one sharp,blur filter we have for avisynth in yuy .
Besides they have included a rgb24 mode so I think it works correctly for some programams
that need that.
Unluckly there exists still a bug in AdjustFocusH (for developers) in width loop when you
work in yuy ;it works correctly in rgb.The bugs creates a strange line in the right side of
the frame.Using it before cropping you can cut that line.But if you can compile avisynth
(I have tried and couldn't),make some test with the following line (line 1517,revision1.7)

q[vi.width*2-4] = ScaledPixelClip(q[0] * center_weight + (yy + q[vi.width*2-2])
If I am not wrong the problem is there.Maybe Dividee could help us,he has released a
binary dll somedays ago.
There is also a ConvertFPS filter but I haven't test it at all.
It is not too much, if you have more details or new information please let us know.
Arda
ARDA is offline   Reply With Quote