mirror of
https://github.com/game-stop/veejay.git
synced 2025-12-20 23:00:02 +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:
@@ -65,8 +65,6 @@ void dither_apply(VJFrame *frame, int width, int height, int size,
|
||||
/* Luminance , dither image. Do
|
||||
this for U and V too, see what happens hehe */
|
||||
v = ((long) Y[((h_ * width) + w_)] + d);
|
||||
if (v > 255)
|
||||
v = 216;
|
||||
Y[(h_ * width) + w_] = (uint8_t) ((v >> 7) << 7);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user