Welcome to Doom9's Forum, THE in-place to be for everyone interested in DVD conversion.

Before you start posting please read the forum rules. By posting to this forum you agree to abide by the rules.

 

Go Back   Doom9's Forum > Capturing and Editing Video > Avisynth Development

Reply
 
Thread Tools Search this Thread Display Modes
Old 3rd November 2002, 15:34   #81  |  Link
sh0dan
Retired AviSynth Dev ;)
 
sh0dan's Avatar
 
Join Date: Nov 2001
Location: Dark Side of the Moon
Posts: 3,480
@Rrrough: ok

/me looks up from, and relaxes a bit to see that there are no angry Xvid-devel's after me.
__________________
Regards, sh0dan // VoxPod
sh0dan is offline   Reply With Quote
Old 3rd November 2002, 15:45   #82  |  Link
[Toff]
Registered User
 
Join Date: Oct 2001
Location: FRANCE
Posts: 320
@sh0dan

RGB support in 2.5alpha (avisynth_a_011102.zip) seems broken.
Here is a test clip (650ko) :
http://christophe.paris.free.fr/temp...VS25_RGB24.avi

And the avs script:
AVISource("bug_AVS25_RGB24.avi")
ConvertToRGB24()
__________________
Regards [Toff]
[Toff] is offline   Reply With Quote
Old 3rd November 2002, 15:52   #83  |  Link
MaTTeR
AC3 5.1 Addict
 
MaTTeR's Avatar
 
Join Date: Nov 2001
Location: Big Blue Nation_USA
Posts: 2,036
Quote:
Originally posted by sh0dan
I'll try it out to see if I can reproduce!
Well after hours of trying to get it working I finally managed to do so by cropping in multiples of 8 instead of 4. Of course I also I had to use a MOD-4 resolution. It seems to be working great and very stable.

At 640 resolution I was encoding at 63FPS, I'd say that's a nice speed boost; not to mention the colors staying slightly cleaner. Thx anyways shOdan!
__________________
Need AC3 & SPDIF setup info?
MaTTeR is offline   Reply With Quote
Old 3rd November 2002, 16:26   #84  |  Link
sh0dan
Retired AviSynth Dev ;)
 
sh0dan's Avatar
 
Join Date: Nov 2001
Location: Dark Side of the Moon
Posts: 3,480
Quote:
Originally posted by [Toff]

AVISource("bug_AVS25_RGB24.avi")
ConvertToRGB24()
ConverttoRGB doesn't support YV12 (as stated on the alpha page).
Use
Code:
AVISource("bug_AVS25_RGB24.avi")
ConvertToYUY2()
ConvertToRGB24()
__________________
Regards, sh0dan // VoxPod
sh0dan is offline   Reply With Quote
Old 3rd November 2002, 16:32   #85  |  Link
sh0dan
Retired AviSynth Dev ;)
 
sh0dan's Avatar
 
Join Date: Nov 2001
Location: Dark Side of the Moon
Posts: 3,480
Quote:
Originally posted by MaTTeR
Well after hours of trying to get it working I finally managed to do so by cropping in multiples of 8 instead of 4. Of course I also I had to use a MOD-4 resolution. It seems to be working great and very stable.
@MarcFD: Are you using AlignPlanar in Mpeg2dec3?

Edit: It seems more like an unintentional "feature" in the horzontal resizer.
Edit2: Which leads back to a bug, where avisynth.h not returned aligned row-widths.
__________________
Regards, sh0dan // VoxPod

Last edited by sh0dan; 3rd November 2002 at 17:51.
sh0dan is offline   Reply With Quote
Old 3rd November 2002, 18:49   #86  |  Link
sh0dan
Retired AviSynth Dev ;)
 
sh0dan's Avatar
 
Join Date: Nov 2001
Location: Dark Side of the Moon
Posts: 3,480
New version. Fixing mod 4/8 problems. Complete changelist:

* Resizer now works with MOD4 resolutions.
* MergeLuma/MergeChroma now supports YV12
* Fixed bug in YV12 greyscale.
* Fixed general bug on resolutions that are not mod16.
* NewVideoFrame() now throws an error, if a filter attempts to create an YV12 image that isn't mod4.
* Separatefields() should now split chroma correctly (according to the YV12 spec.)
* Mod4 checks in Resize, crop, addborders.

Enjoy

Bug? - I get some chroma noise on the last line when resizing vertically.
Edit: There seems to be stability issues with this release. I'll test further, but beware!
Edit3: Hopefully fixed it.

New feature:

* Added Limiter(clip,min_luma, max_luma, min_chroma, max_chroma) (inspired by Sansgrip)
__________________
Regards, sh0dan // VoxPod

Last edited by sh0dan; 3rd November 2002 at 22:44.
sh0dan is offline   Reply With Quote
Old 3rd November 2002, 18:54   #87  |  Link
MaTTeR
AC3 5.1 Addict
 
MaTTeR's Avatar
 
Join Date: Nov 2001
Location: Big Blue Nation_USA
Posts: 2,036
Thx for the confirmation sh0dan. New build changelist looks great!

Edit- I just wanted to confirm with you that TemporalSoften still isn't YV12 supported. Correct?
__________________
Need AC3 & SPDIF setup info?

Last edited by MaTTeR; 3rd November 2002 at 18:56.
MaTTeR is offline   Reply With Quote
Old 3rd November 2002, 19:06   #88  |  Link
Marc FD
XviD fan
 
Marc FD's Avatar
 
Join Date: Jun 2002
Location: France
Posts: 907
>Are you using AlignPlanar in Mpeg2dec3?

no. the internal buffers are all 128-bit aligned, but i just added a very simple memcpy from these buffers in each plane.
Marc FD is offline   Reply With Quote
Old 3rd November 2002, 19:20   #89  |  Link
sh0dan
Retired AviSynth Dev ;)
 
sh0dan's Avatar
 
Join Date: Nov 2001
Location: Dark Side of the Moon
Posts: 3,480
@Matter: Correct. It hasn't been implemented yet. I hope dividee will get back to assist us.

@MarcFD: OK. If you use NewVideoFrame that isn't a problem. Just wanted to make sure
__________________
Regards, sh0dan // VoxPod

Last edited by sh0dan; 3rd November 2002 at 19:40.
sh0dan is offline   Reply With Quote
Old 3rd November 2002, 21:45   #90  |  Link
Koepi
Moderator
 
Koepi's Avatar
 
Join Date: Oct 2001
Location: Germany
Posts: 4,454
XviD-03112002-1:
- Fresh CVS checkout. GMC decoding support added.
- New mod. HQ quant type reimplemented.
- Added checkboxes for qpel/gmc for better control.

Well, now even YV12 support is "official", maybe you like this build more.

Regards,
Koepi
Koepi is offline   Reply With Quote
Old 3rd November 2002, 23:08   #91  |  Link
iago
retired
 
iago's Avatar
 
Join Date: Jun 2002
Location: hollywood
Posts: 1,013
@shOdan,

Any ideas and/or hope about the "green-line-at-the-bottom-edge" problem?

@Tom,

Sorry for asking this one more time but any plans on making a YV12 release of UnFilter? (I got addicted and can't live without it! )


Best regards and many thanks again to everyone putting effort on this great work.

iago
iago is offline   Reply With Quote
Old 3rd November 2002, 23:22   #92  |  Link
MaTTeR
AC3 5.1 Addict
 
MaTTeR's Avatar
 
Join Date: Nov 2001
Location: Big Blue Nation_USA
Posts: 2,036
Quote:
Originally posted by iago
@shOdan,

Any ideas and/or hope about the "green-line-at-the-bottom-edge" problem?
I noticed it on my encodes today also.

MOD-8 resolutions does seem to work now with the new AVS build from shOdan and I haven't experiences any instabilities yet.
__________________
Need AC3 & SPDIF setup info?
MaTTeR is offline   Reply With Quote
Old 4th November 2002, 05:38   #93  |  Link
trbarry
Registered User
 
trbarry's Avatar
 
Join Date: Oct 2001
Location: Gainesville FL USA
Posts: 2,092
Quote:
Sorry for asking this one more time but any plans on making a YV12 release of UnFilter? (I got addicted and can't live without it! )
iago -

Yep, Unfilter should be an easy port. But my YV12 plans for the moment are:

- UnDot (fast deringing dot remover), new and simple, mostly done

- TomsMoComp, about half done

- SimpleResize, harder, but I want it

- UnFilter, not hard, but not first

- MPEG2DEC2 HDTV support, others?

As I posted elsewhere, I'm actually having more trouble with YUY2 in the 2.5 alpha.

- Tom
trbarry is offline   Reply With Quote
Old 4th November 2002, 06:02   #94  |  Link
ookzDVD
DVD Rebuilder!
 
ookzDVD's Avatar
 
Join Date: Oct 2001
Posts: 1,147
@forum,
Can someone please post an example of your working .avs script
(complete) for this YV12 ?
How many percent improvement use the YV12 over the "regular" one ?

@sh0dan,
Is all the build resize filter : Bilinear, Bicubic, Lanczos support
the YV12 ?

Thank you.

Last edited by ookzDVD; 4th November 2002 at 06:06.
ookzDVD is offline   Reply With Quote
Old 4th November 2002, 06:58   #95  |  Link
MaTTeR
AC3 5.1 Addict
 
MaTTeR's Avatar
 
Join Date: Nov 2001
Location: Big Blue Nation_USA
Posts: 2,036
Quote:
Originally posted by trbarry
UnDot (fast deringing dot remover), new and simple, mostly done
Tom,
That's great news, glad to hear your working on them already. When you say "dot remover", are you speaking about the so called "mosquito noise" we see on DVD sources? I know your mostly into HDTV so maybe I'm off base here.
__________________
Need AC3 & SPDIF setup info?
MaTTeR is offline   Reply With Quote
Old 4th November 2002, 07:01   #96  |  Link
Koepi
Moderator
 
Koepi's Avatar
 
Join Date: Oct 2001
Location: Germany
Posts: 4,454
@Ookz,

please read the whole thread, all the 50 posts (you'll see which posts you can jump over as they're more-or-less chit-chat).

E.g. I posted a nice working script some pages ago, some other people as well. It's all already there. Even the answer to your question that all resizers are.... well. Now go back to start, and READ for yourself.

Thanks for your attention

Koepi
Koepi is offline   Reply With Quote
Old 4th November 2002, 07:33   #97  |  Link
sh0dan
Retired AviSynth Dev ;)
 
sh0dan's Avatar
 
Join Date: Nov 2001
Location: Dark Side of the Moon
Posts: 3,480
Quote:
Originally posted by iago
Any ideas and/or hope about the "green-line-at-the-bottom-edge" problem?
It should be gone in the latest (04-11) build - at least on my machine.
__________________
Regards, sh0dan // VoxPod
sh0dan is offline   Reply With Quote
Old 4th November 2002, 09:14   #98  |  Link
Gaia
Registered User
 
Join Date: Feb 2002
Posts: 267
Quote:
Originally posted by sh0dan
It should be gone in the latest (04-11) build - at least on my machine.
Sorry sh0dan but the green line is still sadly there Tried your latest build...
Gaia is offline   Reply With Quote
Old 4th November 2002, 12:12   #99  |  Link
Rrrough
Registered User
 
Rrrough's Avatar
 
Join Date: Aug 2002
Location: Avantasia
Posts: 177
@iago & gaia,

I haven't come across the green line problem yet, could you please post your AVS-scripts ? wanna try to reproduce it.

cheers
Rrrough is offline   Reply With Quote
Old 4th November 2002, 12:48   #100  |  Link
Gaia
Registered User
 
Join Date: Feb 2002
Posts: 267
Here's my very simple test script:

LoadPlugin("C:\OHJELM~1\GORDIA~1\mpeg2dec3 YV12.dll")
mpeg2source("C:\THREE_KINGS\3kings.d2v",cpu=0)
crop(0,74,720,428)
BicubicResize(640,264)

It's there but sometimes it's bit hard to see. Turn all the lights off. I also noticed that there's somenthing in the left border.
Gaia is offline   Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 02:45.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.