devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Hans Verkuil <hverkuil@xs4all.nl>
To: Stanimir Varbanov <stanimir.varbanov@linaro.org>,
	linux-arm-msm@vger.kernel.org, linux-kernel@vger.kernel.org,
	linux-media@vger.kernel.org, devicetree@vger.kernel.org
Cc: Vikash Garodia <vgarodia@codeaurora.org>, dikshita@codeaurora.org
Subject: Re: [PATCH v4 04/12] v4l: Add source event change for bit-depth
Date: Wed, 15 Jan 2020 16:03:45 +0100	[thread overview]
Message-ID: <814252fe-6fa9-595b-92b3-8ef8ef4c0187@xs4all.nl> (raw)
In-Reply-To: <988e49aa-469d-17a1-ca25-982c63536e6e@linaro.org>

On 1/10/20 11:54 AM, Stanimir Varbanov wrote:
> Hi Hans,
> 
> On 1/9/20 10:57 AM, Hans Verkuil wrote:
>> On 1/9/20 8:41 AM, Stanimir Varbanov wrote:
>>> Hi Hans,
>>>
>>> On 1/8/20 6:09 PM, Hans Verkuil wrote:
>>>> On 1/6/20 4:49 PM, Stanimir Varbanov wrote:
>>>>> This event indicate that the source color bit-depth is changed
>>>>> during run-time. The client must get the new format and re-allocate
>>>>> buffers for it. This can usually happens with video decoder (encoders)
>>>>> when the bit-stream color bit-depth is changed from 8 to 10bits
>>>>> or vice versa.
>>>>>
>>>>> Acked-by: Sakari Ailus <sakari.ailus@linux.intel.com>
>>>>> Signed-off-by: Stanimir Varbanov <stanimir.varbanov@linaro.org>
>>>>> ---
>>>>>  Documentation/media/uapi/v4l/vidioc-dqevent.rst | 8 +++++++-
>>>>>  Documentation/media/videodev2.h.rst.exceptions  | 1 +
>>>>>  include/uapi/linux/videodev2.h                  | 1 +
>>>>>  3 files changed, 9 insertions(+), 1 deletion(-)
>>>>>
>>>>> diff --git a/Documentation/media/uapi/v4l/vidioc-dqevent.rst b/Documentation/media/uapi/v4l/vidioc-dqevent.rst
>>>>> index 42659a3d1705..fad853d440cf 100644
>>>>> --- a/Documentation/media/uapi/v4l/vidioc-dqevent.rst
>>>>> +++ b/Documentation/media/uapi/v4l/vidioc-dqevent.rst
>>>>> @@ -402,7 +402,13 @@ call.
>>>>>  	that many Video Capture devices are not able to recover from a temporary
>>>>>  	loss of signal and so restarting streaming I/O is required in order for
>>>>>  	the hardware to synchronize to the video signal.
>>>>> -
>>>>> +    * - ``V4L2_EVENT_SRC_CH_COLOR_DEPTH``
>>>>> +      - 0x0002
>>>>> +      - This event gets triggered when color bit-depth change is detected
>>>>> +	from a video decoder. Applications will have to query the new pixel
>>>>> +	format and re-negotiate the queue. In most cases the streaming must be
>>>>> +	stopped and restarted (:ref:`VIDIOC_STREAMOFF <VIDIOC_STREAMON>`
>>>>> +	followed by :ref:`VIDIOC_STREAMON <VIDIOC_STREAMON>`).
>>>>
>>>> I think this is too specific for decoders. Something similar to the
>>>> CH_RESOLUTION description would be more appropriate:
>>>>
>>>>       - This event gets triggered when a color bit-depth change (but not a
>>>> 	resolution change!) is detected	at an input. This can come from an
>>>
>>> What you mean by "but not a resolution change" here? Resolution change
>>> and bit-depth change cannot occur on the same time, or something else.
>>
>> What I was trying to say is that a resolution change implies a possible bit-depth
>> change as well, whereas V4L2_EVENT_SRC_CH_COLOR_DEPTH is only set if there is
>> a bit-depth change but no resolution change.
>>
>> V4L2_EVENT_SRC_CH_RESOLUTION requires that userspace does a full resync to the
>> new format, CH_COLOR_DEPTH implies that only the bit depth changed.
> 
> CH_COLOR_DEPTH implies format re-negotiation as well. In Venus case
> 8->10bit change will change the format of OPB buffers (now it is not
> possible because of lack of v4l modifiers) and DPB buffers becomes
> compressed raw buffers (to optimize bandwidth).
> 
>>
>> Which actually makes me wonder: is there a difference between the two change flags
>> w.r.t. userspace behavior? If there is, then that should be carefully documented,
>> if there isn't, then is this new flag really needed?
> 
> Looking into semantics of v4l events, CH_COLOR_DEPTH makes sense because
> it describes what actually changed (similar to CH_RESOLUTION). I would
> say that v4l2_event::type V4L2_EVENT_SOURCE_CHANGE implies format
> re-negotiation and v4l2_event::src_change just informs userland what
> exactly is changed.
> 
> I'll postpone this patch until we have clear vision what will be the
> usage in user-space.
> 

My main problem regarding semantics is what should be done if you disconnect
and reconnect an HDMI (for example) connector. You get a V4L2_EVENT_SOURCE_CHANGE
when the new signal is detected, but should it just set V4L2_EVENT_SRC_CH_RESOLUTION
(as it does today), or also V4L2_EVENT_SRC_CH_COLOR_DEPTH?

In my view V4L2_EVENT_SRC_CH_COLOR_DEPTH only makes sense if the resolution
stays the same, but only the color depth changes.

BTW, one thing that will be added here as well in the future is a
V4L2_EVENT_SRC_CH_COLORIMETRY for when the colorspace etc. information changes,
but nothing else. In that case there is no need to renegotiate the format etc.,
it's just the interpretation of the video data that changes.

An alternative approach is to define a V4L2_EVENT_SRC_CH_ALL bit mask, OR-ing
all the V4L2_EVENT_SRC_CH_* defines, and change all drivers that use
V4L2_EVENT_SRC_CH_RESOLUTION at the moment to use V4L2_EVENT_SRC_CH_ALL instead,
and only drivers that detect that only one of these changes took place will
use a specific V4L2_EVENT_SRC_CH_ flag. This will be primarily codec drivers,
I believe.

There aren't that many of those, so this shouldn't be too difficult to do.

Perhaps this is the cleanest approach to this problem...

Regards,

	Hans

  reply	other threads:[~2020-01-15 15:03 UTC|newest]

Thread overview: 27+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-01-06 15:49 [PATCH v4 00/12] Venus new features Stanimir Varbanov
2020-01-06 15:49 ` [PATCH v4 01/12] venus: redesign clocks and pm domains control Stanimir Varbanov
2020-01-06 15:49 ` [PATCH v4 02/12] media: venus: introduce core selection Stanimir Varbanov
2020-01-06 15:49 ` [PATCH v4 03/12] venus: venc: blacklist two encoder properties Stanimir Varbanov
2020-01-06 15:49 ` [PATCH v4 04/12] v4l: Add source event change for bit-depth Stanimir Varbanov
2020-01-08 16:09   ` Hans Verkuil
2020-01-08 16:43     ` Stanimir Varbanov
2020-01-09  7:41     ` Stanimir Varbanov
2020-01-09  8:57       ` Hans Verkuil
2020-01-10 10:54         ` Stanimir Varbanov
2020-01-15 15:03           ` Hans Verkuil [this message]
2020-04-15 14:34             ` Stanimir Varbanov
2020-01-06 15:49 ` [PATCH v4 05/12] media: venus: vdec: handle 10bit bitstreams Stanimir Varbanov
2020-01-06 15:49 ` [PATCH v4 06/12] dt-bindings: media: venus: Convert msm8916 to DT schema Stanimir Varbanov
2020-01-06 22:04   ` Rob Herring
2020-01-08 16:17     ` Stanimir Varbanov
2020-01-06 15:49 ` [PATCH v4 07/12] dt-bindings: media: venus: Convert msm8996 " Stanimir Varbanov
2020-01-06 22:05   ` Rob Herring
2020-01-06 15:49 ` [PATCH v4 08/12] dt-bindings: media: venus: Convert sdm845 " Stanimir Varbanov
2020-01-06 22:06   ` Rob Herring
2020-01-06 15:49 ` [PATCH v4 09/12] dt-bindings: media: venus: Add sdm845v2 " Stanimir Varbanov
2020-01-06 22:07   ` Rob Herring
2020-01-06 15:49 ` [PATCH v4 10/12] venus: core: add sdm845-v2 DT compatible and resource struct Stanimir Varbanov
2020-01-06 15:49 ` [PATCH v4 11/12] arm64: dts: sdm845: follow venus-sdm845v2 DT binding Stanimir Varbanov
2020-02-27 22:38   ` Stanimir Varbanov
2020-02-28  5:59     ` Bjorn Andersson
2020-01-06 15:49 ` [PATCH v4 12/12] dt-bindings: media: venus: delete old binding document Stanimir Varbanov

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=814252fe-6fa9-595b-92b3-8ef8ef4c0187@xs4all.nl \
    --to=hverkuil@xs4all.nl \
    --cc=devicetree@vger.kernel.org \
    --cc=dikshita@codeaurora.org \
    --cc=linux-arm-msm@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-media@vger.kernel.org \
    --cc=stanimir.varbanov@linaro.org \
    --cc=vgarodia@codeaurora.org \
    /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).