forked from Minki/linux
[media] ti-vpe: use true/false for boolean vars
Instead of using 0 or 1 for boolean, use the true/false defines. Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
This commit is contained in:
parent
11b4c175d9
commit
68bbbd7912
@ -835,10 +835,10 @@ static int set_srcdst_params(struct vpe_ctx *ctx)
|
||||
VPDMA_STRIDE_ALIGN);
|
||||
mv_buf_size = bytes_per_line * s_q_data->height;
|
||||
|
||||
ctx->deinterlacing = 1;
|
||||
ctx->deinterlacing = true;
|
||||
src_h <<= 1;
|
||||
} else {
|
||||
ctx->deinterlacing = 0;
|
||||
ctx->deinterlacing = false;
|
||||
mv_buf_size = 0;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user