linux-media.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Ayaka <ayaka@soulik.info>
To: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
Cc: Sakari Ailus <sakari.ailus@iki.fi>,
	Mikhail Gavrilov <mikhail.v.gavrilov@gmail.com>,
	Laurent Pinchart <laurent.pinchart@ideasonboard.com>,
	linux-media@vger.kernel.org
Subject: Re: P010 fourcc format support - Was: Re: Kernel error "Unknown pixelformat 0x00000000" occurs when I start capture video
Date: Thu, 10 Jan 2019 00:42:32 +0800	[thread overview]
Message-ID: <0F13FA85-843C-43A6-ADFA-03C789D60120@soulik.info> (raw)
In-Reply-To: <20190109110155.39a185de@coco.lan>



Sent from my iPad

> On Jan 9, 2019, at 9:01 PM, Mauro Carvalho Chehab <mchehab+samsung@kernel.org> wrote:
> 
> Em Wed, 9 Jan 2019 14:19:00 +0200
> Sakari Ailus <sakari.ailus@iki.fi> escreveu:
> 
>>> On Tue, Jan 08, 2019 at 04:49:16PM -0200, Mauro Carvalho Chehab wrote:
>>> Em Tue, 8 Jan 2019 21:11:41 +0500
>>> Mikhail Gavrilov <mikhail.v.gavrilov@gmail.com> escreveu:
>>> 
>>>> On Tue, 8 Jan 2019 at 20:57, Laurent Pinchart
>>>> <laurent.pinchart@ideasonboard.com> wrote:  
>>>>> 
>>>>> Thank you.
>>>>> 
>>>>> Your device exposes five formats: YUY2 (YUYV), YV12 (YVU420), NV12, P010 and
>>>>> BGR3 (BGR24). They are all supported by V4L2 and the uvcvideo driver except
>>>>> for the P010 format. This would be easy to fix in the uvcvideo driver if it
>>>>> wasn't for the fact that the P010 format isn't support by V4L2. Adding support
>>>>> for it isn't difficult, but I don't have time to do this myself at the moment.
>>>>> Would you consider volunteering if I guide you ? :-)
>>>>> 
>>>> 
>>>> Sure, I'd be happy to help. What is required of me?  
>>> 
>>> It shouldn't be hard. 
>>> 
>>> First, you need to add the new format at include/uapi/linux/videodev2.h,
>>> like this one:
>>> 
>>>    #define V4L2_PIX_FMT_YUV420M v4l2_fourcc('Y', 'M', '1', '2') /* 12  YUV420 planar */
>>> 
>>> Please put it together with the other YUV formats.
>>> 
>>> As the fourcc "P010" was not used on Linux yet, you could use it,
>>> e. g., something like:
>>> 
>>>    #define V4L2_PIX_FMT_YUV_P10 v4l2_fourcc('P', '0', '1', '0') /* 10  YUV420 planar */
>>> 
>>> You need then to document it. Each V4L2 format should have a description, 
>>> like this:
>>> 
>>>    https://linuxtv.org/downloads/v4l-dvb-apis-new/uapi/v4l/pixfmt-yuv420m.html
>>> 
>>> This is generated via a text file (using ReST syntax). On the above example,
>>> it is produced by this file:
>>> 
>>>    https://git.linuxtv.org/media_tree.git/tree/Documentation/media/uapi/v4l/pixfmt-yuv420m.rst
>>> 
>>> Writing it would take a little more time, but, provided that you don't 
>>> copy what's written from external docs, you could take a look at the
>>> Internet for the P010 descriptions, and use the pixfmt-yuy420m.rst file
>>> as the basis for a new pixfmt-p010.rst file.  
>> 
>> There is some work done on this but it's not finished; searching "P010" in
>> Patchwork yields this:
>> 
>> <URL:https://patchwork.linuxtv.org/patch/39752/>
> 
> Good point! I'm c/c the author of it.
> 
> The actual patch for media is this one:
> 
>    https://patchwork.linuxtv.org/patch/39753/
> 
> It sounds that the author didn't sent any version after that.
> 
> The goal seemed to be to add P010 support at DRM for the rockchip driver.
> 
> specifically with regards to patch 2/3, the issues seemed to be:
> 
>    - some naming issues with the multiplane format variants;
>    - a typo: simliar -> similar;
>    - a comment about the usage of 1/2 UTF code (½). Not sure if
>      Sphinx will handle it well for both html and pdf outputs.
>      It should, but better to double check.
> 
> Ayaka,
> 
> There is a UVC media device that supports P010 device. We're discussing
> about adding support for it on media. The full thread is at:
> 
> https://lore.kernel.org/linux-media/20190109121900.hbrpttmxz3gaotwx@valkosipuli.retiisi.org.uk/T/#m8c395156ca0e898e4c8b1e2c6309d912bc414804
> 
> We've seen that you tried to submit a patch series for DRM adding
> support for it at the rockship driver. What's the status of such
> series?
Rockchip would use another 10bit variant of NV12, which is merged as NV12LE40 at Gstreamer and I sent another patch for it, but I didn’t receive any feedback from that.
> 
> Thanks,
> Mauro


  reply	other threads:[~2019-01-09 16:42 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-01-05 20:05 Kernel error "Unknown pixelformat 0x00000000" occurs when I start capture video Mikhail Gavrilov
2019-01-08 14:45 ` Mauro Carvalho Chehab
2019-01-08 14:54   ` Laurent Pinchart
2019-01-08 15:16     ` Mauro Carvalho Chehab
2019-01-08 15:55       ` Laurent Pinchart
2019-01-08 15:18     ` Mikhail Gavrilov
2019-01-08 15:58       ` Laurent Pinchart
2019-01-08 16:11         ` Mikhail Gavrilov
2019-01-08 18:49           ` Mauro Carvalho Chehab
2019-01-08 19:00             ` Mauro Carvalho Chehab
2019-01-09  3:51               ` Mikhail Gavrilov
2019-01-09 12:03                 ` Mauro Carvalho Chehab
2019-01-08 21:29             ` Laurent Pinchart
2019-01-09 12:19             ` Sakari Ailus
2019-01-09 13:01               ` P010 fourcc format support - Was: " Mauro Carvalho Chehab
2019-01-09 16:42                 ` Ayaka [this message]
2019-01-09 16:52                   ` Nicolas Dufresne
2019-01-09 17:28                     ` Mauro Carvalho Chehab
2019-01-09 18:20                       ` Nicolas Dufresne

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=0F13FA85-843C-43A6-ADFA-03C789D60120@soulik.info \
    --to=ayaka@soulik.info \
    --cc=laurent.pinchart@ideasonboard.com \
    --cc=linux-media@vger.kernel.org \
    --cc=mchehab+samsung@kernel.org \
    --cc=mikhail.v.gavrilov@gmail.com \
    --cc=sakari.ailus@iki.fi \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).