Skip to content

Commit

Permalink
[media] s5p-jpeg: Initialize cb and cr to zero
Browse files Browse the repository at this point in the history
To avoid garbage value written into image base address planes,
initialize cb and cr of structure s5p_jpeg_addr to zero.

Signed-off-by: Tony K Nadackal <tony.kn@samsung.com>
Signed-off-by: Sylwester Nawrocki <s.nawrocki@samsung.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
  • Loading branch information
Tony K Nadackal authored and Mauro Carvalho Chehab committed Mar 4, 2015
1 parent d5c0076 commit cb0c3f5
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions drivers/media/platform/s5p-jpeg/jpeg-core.c
Original file line number Diff line number Diff line change
Expand Up @@ -1845,6 +1845,9 @@ static void exynos4_jpeg_set_img_addr(struct s5p_jpeg_ctx *ctx)
struct s5p_jpeg_addr jpeg_addr;
u32 pix_size, padding_bytes = 0;

jpeg_addr.cb = 0;
jpeg_addr.cr = 0;

pix_size = ctx->cap_q.w * ctx->cap_q.h;

if (ctx->mode == S5P_JPEG_ENCODE) {
Expand Down

0 comments on commit cb0c3f5

Please sign in to comment.