lavfi/vf_drawbox.c: fix CID 1485004
CID 1485004: Uninitialized variables (UNINIT) Using uninitialized value "x" when calling "*pixel_belongs_to_region". Signed-off-by: Ting Fu <ting.fu@intel.com>
This commit is contained in:
parent
58614f7bee
commit
22d99589d8
@ -126,8 +126,9 @@ static void draw_region(AVFrame *frame, DrawBoxContext *ctx, int left, int top,
|
|||||||
for (y = top; y < down; y++) {
|
for (y = top; y < down; y++) {
|
||||||
ASSIGN_THREE_CHANNELS
|
ASSIGN_THREE_CHANNELS
|
||||||
if (ctx->invert_color) {
|
if (ctx->invert_color) {
|
||||||
if (pixel_belongs_to_region(ctx, x, y))
|
for (x = left; x < right; x++)
|
||||||
row[0][x] = 0xff - row[0][x];
|
if (pixel_belongs_to_region(ctx, x, y))
|
||||||
|
row[0][x] = 0xff - row[0][x];
|
||||||
} else {
|
} else {
|
||||||
for (x = left; x < right; x++) {
|
for (x = left; x < right; x++) {
|
||||||
double alpha = (double)ctx->yuv_color[A] / 255;
|
double alpha = (double)ctx->yuv_color[A] / 255;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user