NextPVR Forums
  • ______
  • Home
  • New Posts
  • Wiki
  • Members
  • Help
  • Search
  • Register
  • Login
  • Home
  • Wiki
  • Members
  • Help
  • Search
NextPVR Forums Public Add-ons (3rd party plugins, utilities and skins) Old Stuff (Legacy) GB-PVR Support (legacy) v
« Previous 1 … 551 552 553 554 555 … 1231 Next »
Vertical scaling problem with 0.96.12

 
  • 0 Vote(s) - 0 Average
Vertical scaling problem with 0.96.12
csy
Offline

Senior Member

Posts: 502
Threads: 51
Joined: Jul 2005
#1
2006-03-12, 12:52 AM
Hi Sub,

Playing back recordings no longer map the recorded MPEG2 576i rows to the screen 576 pixel rows. This was previously working on 0.96.8 and if rollback to that old version all works fine again. This is easy to prove for me because I do not use any deinterlacing to my SDTV which means if you instead watch it on a monitor you can see the interlacing on each row when movement occurs (I'm using the scrolling text on the C4 Select show as my reference recording which clearly shows the interlacing). On 0.96.8 the scrolling text has clearly defined squared steps between the lines, however on 0.96.12 the scrolling text is all blurred.

I'm using standard VMR9, but have also tried VMR7 and Overlay with the same result. I have removed all aspect ratios except for 0,0,1,1 and also tried disabling the overscan-video option, but no difference.

Could you please assist with this problem?
sub
Offline

Administrator

NextPVR HQ, New Zealand
Posts: 106,708
Threads: 767
Joined: Nov 2003
#2
2006-03-12, 01:06 AM
Its never something I've aimed to do (or ever tried), but I also cant think of anything that would have changed, so if you used to be able to do it, you should still be able to do it.

You'd need to be using an aspect ration of 0,0,1,1 and have

<VerticalZoom>0</VerticalZoom>
<OverScanVideoAlso>false</OverScanVideoAlso>

and have a window has a client rectangle that is precisely 720x576.

If these all all correct, and assumming you have no post processing applied, or video decoder settings that apply aspect ratio control itself, then you should end up with a picture that is 720x576.

What video decoder are you using that outputs interlaced images? I'm cant think of any off hand.
csy
Offline

Senior Member

Posts: 502
Threads: 51
Joined: Jul 2005
#3
2006-03-12, 02:19 AM
Interesting, so nothing specific has changed in the way of scaling going to 0.96.12. It is indeed strange that I'm seeing a difference.

My system is configured as per your reply, with the only change in system configuration being the GBPVR upgrade itself. I have installed 0.96.12 as an upgrade and also as a completely fresh install with no difference.

Decoder is Dscaler5 configured to forced weave deinterlacing (aka no deinterlacing). To prove it is not the decoder I have also tried Nvidia Purevideo configured the same and producing the same result between the 2 versions.

I'll keep playing and see if I can work out what is going wrong.

Cheers
csy
Offline

Senior Member

Posts: 502
Threads: 51
Joined: Jul 2005
#4
2006-03-12, 05:58 AM (This post was last modified: 2006-03-12, 06:18 AM by csy.)
Sub, could you please explain what "OverScanVideoAlso" does?

The default 1.05 horizontal overscan is always applied to the video on both 0.96.8 and also 0.96.12, and changing "OverScanVideoAlso" between true and false does not make a difference (that I can see on VMR9).

BTW, I have definately confirmed it is a vertical scaling problem. I have a test pattern where every alternate line is black and you can definately see non-linear clumping of rows on 0.96.12 which indicates to me that double-scaling is occuring (whereas rows are even and linear on 0.96.8) (again focusing only on VMR9)
csy
Offline

Senior Member

Posts: 502
Threads: 51
Joined: Jul 2005
#5
2006-03-13, 06:20 AM (This post was last modified: 2006-03-13, 08:47 AM by csy.)
*Bump*

Sub, could you please explain what "OverScanVideoAlso" does?

Edit,
0.96.8 does have the same scaling issue when using VMR9 Custom Renderer (both horizontal & vertical lines all blurred together)
(0.96.8 VMR9,VMR7,Overlay are ok though)

Whatever scaling is being used on 0.96.8 VMR9 Custom Renderer seems to now be applied to 0.96.12 standard VMR9/VMR7/Overlay
sub
Offline

Administrator

NextPVR HQ, New Zealand
Posts: 106,708
Threads: 767
Joined: Nov 2003
#6
2006-03-13, 04:45 PM
Quote:Sub, could you please explain what "OverScanVideoAlso" does?
Let me explain with an example. If you had a crap tv out that seemed to cut off the left 100 pixels on the screen, you could do something like the following in config.xml:

<OverScanBorderX1>100</OverScanBorderX1>
<OverScanBorderY1>0</OverScanBorderY1>
<OverScanBorderX2>0</OverScanBorderX2>
<OverScanBorderY2>0</OverScanBorderY2>

This would cause GB-PVR just leave a big black strip for the left 100 pixels, and menus would be displayed to the right of this.

When you back a video, then it'll be full screen, unless you specify <OverScanVideoAlso>true</OverScanVideoAlso> then it'll also honour these overscan settings by leaving a black strip of 100 pixels.

Quote:Whatever scaling is being used on 0.96.8 VMR9 Custom Renderer seems to now be applied to 0.96.12 standard VMR9/VMR7/Overlay
No. The only change relating to the renderer was the addition of this "OverScanVideoAlso" thing, and a change to the VMR7 render to correctly restore the previous aspect ratio and inset window position. These three renderers are very separate.
csy
Offline

Senior Member

Posts: 502
Threads: 51
Joined: Jul 2005
#7
2006-03-14, 06:43 AM
Thanks Sub for spending time to answer my questions and congratulations on a new baby daughter.

I think I've worked out what is going wrong. There is double-scaling. First the video is being reduced by 6 pixels horizontally and vertically which would equate to a 3 pixel boader around the image, then the image is being scaled up to full screen size.
Through experimentation I have found that by setting
<OverScanBorderX1>3</OverScanBorderX1>
<OverScanBorderY1>3</OverScanBorderY1>
<OverScanBorderX2>3</OverScanBorderX2>
<OverScanBorderY2>3</OverScanBorderY2>
<OverScanVideoAlso>true</OverScanVideoAlso>
Then all pixel lines (vertical and horizontal) are evenly distributed across the screen, however with small 3 pixel gap round the screen.
Now if I
<OverScanVideoAlso>false</OverScanVideoAlso>
Then I'm back to my non-linear clumping of pixel lines (vertical and horizontal)
I have proven this on 0.96.12 VMR9/VMR7/Overlay

This leads me to believe that a 3 pixel boader has been introduced on 0.96.12

I would appreciate you investigatigating this further, time permitting of course - family first Smile
sub
Offline

Administrator

NextPVR HQ, New Zealand
Posts: 106,708
Threads: 767
Joined: Nov 2003
#8
2006-03-14, 06:09 PM
Quote:This leads me to believe that a 3 pixel boader has been introduced on 0.96.12
No, there hasnt been.
csy
Offline

Senior Member

Posts: 502
Threads: 51
Joined: Jul 2005
#9
2006-03-15, 07:41 AM
Ok I've nailed it, and it definitely is a bug.

The right-hand edge and bottom edge are both stretched off the screen by 6 pixels. The work-around is to use the following settings to shrink the video back to the screen edges.
<OverScanBorderX1>0</OverScanBorderX1>
<OverScanBorderY1>0</OverScanBorderY1>
<OverScanBorderX2>6</OverScanBorderX2>
<OverScanBorderY2>6</OverScanBorderY2>
<OverScanVideoAlso>true</OverScanVideoAlso>

There is also something strange with VMR9 Custom Renderer. My test pattern which has a section where every second horizontal line as black and another section where every second vertical line is black, displays with all the black lines filled-in. I will continue investigating this issue.
chud
Offline

Member

Posts: 183
Threads: 18
Joined: Oct 2005
#10
2006-03-15, 04:01 PM
csy,

by test pattern i assume you mean that you have a video with a static image of horizontal bars? while it wouldn't be the end of the world to make one myself, would it be possible for you to up this somewhere?
« Next Oldest | Next Newest »

Users browsing this thread: 1 Guest(s)

Pages (2): 1 2 Next »


Possibly Related Threads…
Thread Author Replies Views Last Post
  Composite channel configuration problem. seymoria 6 4,577 2012-01-15, 10:15 PM
Last Post: seymoria
  Recording problem with Hauppauge Nova-S USB2 ... softfoot 4 3,377 2011-06-27, 02:06 AM
Last Post: sub
  Problem with GB-PVR - Cannot Watch Channels and Administrator Problem Greg Smith 10 4,430 2011-05-22, 05:09 PM
Last Post: sub
  Problem with switch to DST next 4 2,303 2011-03-29, 08:42 PM
Last Post: darag2358
  Huge database (+27GB) - is it a problem? pme 7 2,988 2011-01-24, 12:37 AM
Last Post: gEd
  MCE 2005 IR Blaster problem persim 6 3,438 2010-12-29, 01:28 AM
Last Post: persim
  Another pause problem fleapower 10 3,774 2010-12-15, 09:33 PM
Last Post: fleapower
  remote problem in GBPVR Zacken 5 2,599 2010-12-08, 09:00 PM
Last Post: Zacken
  Transcode Problem axeman91 7 3,303 2010-11-22, 09:02 AM
Last Post: goelectric
  Can't cure the Error: 1904 problem rkircher 1 1,840 2010-11-10, 07:22 AM
Last Post: stustunz

  • View a Printable Version
  • Subscribe to this thread
Forum Jump:

© Designed by D&D, modified by NextPVR - Powered by MyBB

Linear Mode
Threaded Mode