use correct black level

This commit is contained in:
niels
2025-11-03 01:45:09 +01:00
parent 3e0a1e3d67
commit dbe75b293c

View File

@@ -66,7 +66,7 @@ void dummy_rgb_apply( VJFrame *frame, int r,int g, int b)
{
const int len = frame->len;
const int uv_len = frame->uv_len;
int colorCb=128, colorCr=128, colorY=0;
int colorCb=128, colorCr=128, colorY=pixel_Y_lo_;
uint8_t *Y = frame->data[0];
uint8_t *Cb = frame->data[1];
@@ -82,7 +82,7 @@ void dummy_rgb_apply( VJFrame *frame, int r,int g, int b)
static void dummy_apply_job( void *arg )
{
vj_task_arg_t *t = (vj_task_arg_t*) arg;
int colorCb=128, colorCr=128, colorY=0;
int colorCb=128, colorCr=128, colorY=pixel_Y_lo_;
uint8_t *Y = t->input[0];
uint8_t *Cb = t->input[1];