notaz
Certified Guru
The hardware scaler in pandora uses poly-phase 5-tap 8-phase filter. It is described in 15.4.2.3.4 and 15.6.1.3 sections of TRM. There are 40 coefficients programmable for both horizontal and vertical resampling (vertical resampling might also use 3 taps/24 coefficients, it depends on available pixel clock).
The default 5-tap coefficients for upscaling are:
These are used regardless of input/output resolutions, and result is divided by 128 for each phase from what I understand. DaveC's comments are "it's bi-linear blurr filter", "making everything blurry like it is out of focus", "honestly looks awful", "nothing is sharp anymore and the contrast is gone".
Using the ones bellow seem to make it nearest neighbor filter:
But I'm not sure using that one is technically correct.
So the question is, can it be tuned to look better? Exophase made a comment here but I'm not sure it's applicable.
The default 5-tap coefficients for upscaling are:
Code:
0 0 128 0 0
-1 13 124 -8 0
-2 30 112 -11 -1
-5 51 95 -11 -2
0 -9 73 73 -9
-2 -11 95 51 -5
-1 -11 112 30 -2
0 -8 124 13 -1
Using the ones bellow seem to make it nearest neighbor filter:
Code:
0 0 128 0 0
0 0 128 0 0
0 0 128 0 0
...
So the question is, can it be tuned to look better? Exophase made a comment here but I'm not sure it's applicable.
Last edited by a moderator: