Hi All,
I just want ot verify and make sure some stuff about the resizer module:
After getting a buffer from the decoded stream (420 buffer format)
I want to feed that buffer to the resizer, but according to the data sheets
when in 420 mode the data is still 16 bits wide so i had to expand the buffers (Y and C)
which takes a long time to do: i.e
from the format recived from the decoder
+------------------------------------+
| Y0 | Y1 | Y2 | Y3 |.............|Yn|
+------------------------------------+
To the input format of the resizer
+-------------------------------------------------------------+
| Y0 | X | Y1 | X | Y2 | X | Y3 | X |..........................|Yn|
+-------------------------------------------------------------+
X - dont care
same has to be done to the cb/cr vector
This process works good but the probelm is that the buffer expantion process takes a long time (100 ms - lots of coping)
So it makes impossible to stream a resized 420 video.
I wanted to know if this is correct ?
and if so is there some way to do this processing work fast so it will be fast
enough to stream a resized 420 video ?
Thanks