Re: [PATCH] libv4lconvert: add support for new pixelformats

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Hi,

On 07/18/2014 12:27 AM, Hans Verkuil wrote:
> Support for alpha-channel aware pixelformats was added. Recognize those formats
> in libv4lconvert.
> 
> Signed-off-by: Hans Verkuil <hans.verkuil@xxxxxxxxx>

Looks good:

Acked-by: Hans de Goede <hdegoede@xxxxxxxxxx>

Feel free to push.

Regards,

Hans

> 
> diff --git a/lib/libv4lconvert/libv4lconvert.c b/lib/libv4lconvert/libv4lconvert.c
> index 7ee7c19..cea65aa 100644
> --- a/lib/libv4lconvert/libv4lconvert.c
> +++ b/lib/libv4lconvert/libv4lconvert.c
> @@ -86,6 +86,10 @@ static const struct v4lconvert_pixfmt supported_src_pixfmts[] = {
>  	{ V4L2_PIX_FMT_RGB565,		16,	 4,	 6,	0 },
>  	{ V4L2_PIX_FMT_BGR32,		32,	 4,	 6,	0 },
>  	{ V4L2_PIX_FMT_RGB32,		32,	 4,	 6,	0 },
> +	{ V4L2_PIX_FMT_XBGR32,		32,	 4,	 6,	0 },
> +	{ V4L2_PIX_FMT_XRGB32,		32,	 4,	 6,	0 },
> +	{ V4L2_PIX_FMT_ABGR32,		32,	 4,	 6,	0 },
> +	{ V4L2_PIX_FMT_ARGB32,		32,	 4,	 6,	0 },
>  	/* yuv 4:2:2 formats */
>  	{ V4L2_PIX_FMT_YUYV,		16,	 5,	 4,	0 },
>  	{ V4L2_PIX_FMT_YVYU,		16,	 5,	 4,	0 },
> @@ -1121,6 +1125,8 @@ static int v4lconvert_convert_pixfmt(struct v4lconvert_data *data,
>  		break;
>  
>  	case V4L2_PIX_FMT_RGB32:
> +	case V4L2_PIX_FMT_XRGB32:
> +	case V4L2_PIX_FMT_ARGB32:
>  		if (src_size < (width * height * 4)) {
>  			V4LCONVERT_ERR("short rgb32 data frame\n");
>  			errno = EPIPE;
> @@ -1143,6 +1149,8 @@ static int v4lconvert_convert_pixfmt(struct v4lconvert_data *data,
>  		break;
>  
>  	case V4L2_PIX_FMT_BGR32:
> +	case V4L2_PIX_FMT_XBGR32:
> +	case V4L2_PIX_FMT_ABGR32:
>  		if (src_size < (width * height * 4)) {
>  			V4LCONVERT_ERR("short bgr32 data frame\n");
>  			errno = EPIPE;
> 
--
To unsubscribe from this list: send the line "unsubscribe linux-media" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html




[Index of Archives]     [Linux Input]     [Video for Linux]     [Gstreamer Embedded]     [Mplayer Users]     [Linux USB Devel]     [Linux Audio Users]     [Linux Kernel]     [Linux SCSI]     [Yosemite Backpacking]
  Powered by Linux