[media] vivid: fix format comments
authorHans Verkuil <hans.verkuil@cisco.com>
Wed, 11 Mar 2015 11:16:03 +0000 (08:16 -0300)
committerMauro Carvalho Chehab <mchehab@osg.samsung.com>
Fri, 3 Apr 2015 00:03:07 +0000 (21:03 -0300)
Clarify which formats have an alpha channel and which do not by
using 'x' instead of 'a' if there is no alpha channel.

Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
drivers/media/platform/vivid/vivid-vid-common.c

index cb73c1ba82b99b239371976dc8686cd36b128477..453a5ad326f6cd4245488129340380e0ad9928d5 100644 (file)
@@ -197,7 +197,7 @@ struct vivid_fmt vivid_formats[] = {
        },
        {
                .name     = "RGB555 (LE)",
-               .fourcc   = V4L2_PIX_FMT_RGB555, /* gggbbbbb arrrrrgg */
+               .fourcc   = V4L2_PIX_FMT_RGB555, /* gggbbbbb xrrrrrgg */
                .vdownsampling = { 1 },
                .bit_depth = { 16 },
                .planes   = 1,
@@ -206,7 +206,7 @@ struct vivid_fmt vivid_formats[] = {
        },
        {
                .name     = "XRGB555 (LE)",
-               .fourcc   = V4L2_PIX_FMT_XRGB555, /* gggbbbbb arrrrrgg */
+               .fourcc   = V4L2_PIX_FMT_XRGB555, /* gggbbbbb xrrrrrgg */
                .vdownsampling = { 1 },
                .bit_depth = { 16 },
                .planes   = 1,
@@ -225,7 +225,7 @@ struct vivid_fmt vivid_formats[] = {
        },
        {
                .name     = "RGB555 (BE)",
-               .fourcc   = V4L2_PIX_FMT_RGB555X, /* arrrrrgg gggbbbbb */
+               .fourcc   = V4L2_PIX_FMT_RGB555X, /* xrrrrrgg gggbbbbb */
                .vdownsampling = { 1 },
                .bit_depth = { 16 },
                .planes   = 1,
@@ -250,7 +250,7 @@ struct vivid_fmt vivid_formats[] = {
        },
        {
                .name     = "RGB32 (LE)",
-               .fourcc   = V4L2_PIX_FMT_RGB32, /* argb */
+               .fourcc   = V4L2_PIX_FMT_RGB32, /* xrgb */
                .vdownsampling = { 1 },
                .bit_depth = { 32 },
                .planes   = 1,
@@ -258,7 +258,7 @@ struct vivid_fmt vivid_formats[] = {
        },
        {
                .name     = "RGB32 (BE)",
-               .fourcc   = V4L2_PIX_FMT_BGR32, /* bgra */
+               .fourcc   = V4L2_PIX_FMT_BGR32, /* bgrx */
                .vdownsampling = { 1 },
                .bit_depth = { 32 },
                .planes   = 1,
@@ -266,7 +266,7 @@ struct vivid_fmt vivid_formats[] = {
        },
        {
                .name     = "XRGB32 (LE)",
-               .fourcc   = V4L2_PIX_FMT_XRGB32, /* argb */
+               .fourcc   = V4L2_PIX_FMT_XRGB32, /* xrgb */
                .vdownsampling = { 1 },
                .bit_depth = { 32 },
                .planes   = 1,
@@ -274,7 +274,7 @@ struct vivid_fmt vivid_formats[] = {
        },
        {
                .name     = "XRGB32 (BE)",
-               .fourcc   = V4L2_PIX_FMT_XBGR32, /* bgra */
+               .fourcc   = V4L2_PIX_FMT_XBGR32, /* bgrx */
                .vdownsampling = { 1 },
                .bit_depth = { 32 },
                .planes   = 1,
This page took 0.026865 seconds and 5 git commands to generate.