mirror of
https://github.com/game-stop/veejay.git
synced 2025-12-24 16:49:59 +01:00
full range yuv (jpeg) for 420,422, decode videoframe before completing open, scan pixel format, changed clamping were applicable in fx
git-svn-id: svn://code.dyne.org/veejay/trunk@672 eb8d1916-c9e9-0310-b8de-cf0c9472ead5
This commit is contained in:
@@ -67,7 +67,7 @@ int scratcher_malloc(int w, int h)
|
||||
frame[0] =
|
||||
(uint8_t *) vj_malloc(w * h * sizeof(uint8_t) * MAX_SCRATCH_FRAMES);
|
||||
if(!frame[0]) return 0;
|
||||
memset( frame[0], 16, w * h * MAX_SCRATCH_FRAMES );
|
||||
memset( frame[0], pixel_Y_lo_, w * h * MAX_SCRATCH_FRAMES );
|
||||
frame[1] =
|
||||
(uint8_t *) vj_malloc( ((w * h)/4) * sizeof(uint8_t) * MAX_SCRATCH_FRAMES);
|
||||
if(!frame[1]) return 0;
|
||||
|
||||
Reference in New Issue
Block a user