linux-media.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Philipp Zabel <p.zabel@pengutronix.de>
To: Kamil Debski <k.debski@samsung.com>
Cc: 'Hans Verkuil' <hverkuil@xs4all.nl>,
	linux-media@vger.kernel.org, kernel@pengutronix.de,
	'Pawel Osciak' <pawel@osciak.com>,
	'Laurent Pinchart' <laurent.pinchart@ideasonboard.com>,
	'Sakari Ailus' <sakari.ailus@linux.intel.com>,
	'Nicolas Dufresne' <nicolas.dufresne@collabora.com>
Subject: Re: [PATCH v3 0/5] Signalling last decoded frame by V4L2_BUF_FLAG_LAST and -EPIPE
Date: Wed, 18 Mar 2015 17:27:49 +0100	[thread overview]
Message-ID: <1426696069.30356.52.camel@pengutronix.de> (raw)
In-Reply-To: <016b01d06197$69e7f6b0$3db7e410$%debski@samsung.com>

Am Mittwoch, den 18.03.2015, 17:20 +0100 schrieb Kamil Debski:
> Hi Philipp,
> 
> > From: Hans Verkuil [mailto:hverkuil@xs4all.nl]
> > Sent: Tuesday, March 17, 2015 5:09 PM
> > 
> > On 03/17/2015 11:46 AM, Philipp Zabel wrote:
> > > Hi,
> > >
> > > Am Freitag, den 06.03.2015, 11:18 +0100 schrieb Philipp Zabel:
> > >> At the V4L2 codec API session during ELC-E 2014, we agreed that for
> > >> the decoder draining flow, after a V4L2_DEC_CMD_STOP decoder command
> > >> was issued, the last decoded buffer should get dequeued with a
> > >> V4L2_BUF_FLAG_LAST set. After that, poll should immediately return
> > >> and all following VIDIOC_DQBUF should return -EPIPE until the stream
> > is stopped or decoding continued via V4L2_DEC_CMD_START.
> > >> (or STREAMOFF/STREAMON).
> > >>
> > >> Changes since v2:
> > >>  - Made V4L2_BUF_FLAG_LAST known to trace events
> > >>
> > >> regards
> > >> Philipp
> > >>
> > >> Peter Seiderer (1):
> > >>   [media] videodev2: Add V4L2_BUF_FLAG_LAST
> > >>
> > >> Philipp Zabel (4):
> > >>   [media] videobuf2: return -EPIPE from DQBUF after the last buffer
> > >>   [media] coda: Set last buffer flag and fix EOS event
> > >>   [media] s5p-mfc: Set last buffer flag
> > >>   [media] DocBooc: mention mem2mem codecs for encoder/decoder
> > >> commands
> > >>
> > >>  Documentation/DocBook/media/v4l/io.xml             | 10 ++++++++
> > >>  .../DocBook/media/v4l/vidioc-decoder-cmd.xml       |  6 ++++-
> > >>  .../DocBook/media/v4l/vidioc-encoder-cmd.xml       |  5 +++-
> > >>  Documentation/DocBook/media/v4l/vidioc-qbuf.xml    |  8 +++++++
> > >>  drivers/media/platform/coda/coda-bit.c             |  4 ++--
> > >>  drivers/media/platform/coda/coda-common.c          | 27 +++++++++--
> > -----------
> > >>  drivers/media/platform/coda/coda.h                 |  3 +++
> > >>  drivers/media/platform/s5p-mfc/s5p_mfc.c           |  1 +
> > >>  drivers/media/v4l2-core/v4l2-mem2mem.c             | 10 +++++++-
> > >>  drivers/media/v4l2-core/videobuf2-core.c           | 18
> > ++++++++++++++-
> > >>  include/media/videobuf2-core.h                     | 10 ++++++++
> > >>  include/trace/events/v4l2.h                        |  3 ++-
> > >>  include/uapi/linux/videodev2.h                     |  2 ++
> > >>  13 files changed, 84 insertions(+), 23 deletions(-)
> > >
> > > are there any further changes that I should make to this series?
> > 
> > I'd like to see some Acks, esp. from Kamil and Pawel.
> > 
> > I'll take another look as well, probably on Friday.
> 
> The patches look good IMHO. I am not sure about the order - should the 
> patch with code follow the documentation or should it be the other way around?
> Anyway, it should be consistent. Here the documentation patches are first and
> last, such that first precedes the code and then second follows the change.
> 
> Maybe the documentation should be in the same patch that makes the API change?
> 
> In the "DocBooc: mention mem2mem codecs for encoder/decoder commands" I would
> mention that dequeue can return EPIPE.

Thanks, unless otherwise instructed, I'll add that, move docs to the
fron and s/DocBooc/DocBook/ in the commit message.

regards
Philipp


  reply	other threads:[~2015-03-18 16:27 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-03-06 10:18 [PATCH v3 0/5] Signalling last decoded frame by V4L2_BUF_FLAG_LAST and -EPIPE Philipp Zabel
2015-03-06 10:18 ` [PATCH v3 1/5] [media] videodev2: Add V4L2_BUF_FLAG_LAST Philipp Zabel
2015-03-06 10:18 ` [PATCH v3 2/5] [media] videobuf2: return -EPIPE from DQBUF after the last buffer Philipp Zabel
2015-03-06 10:18 ` [PATCH v3 3/5] [media] coda: Set last buffer flag and fix EOS event Philipp Zabel
2015-03-06 10:18 ` [PATCH v3 4/5] [media] s5p-mfc: Set last buffer flag Philipp Zabel
2015-03-06 10:18 ` [PATCH v3 5/5] [media] DocBooc: mention mem2mem codecs for encoder/decoder commands Philipp Zabel
2015-03-17 10:46 ` [PATCH v3 0/5] Signalling last decoded frame by V4L2_BUF_FLAG_LAST and -EPIPE Philipp Zabel
2015-03-17 16:09   ` Hans Verkuil
2015-03-18 16:20     ` Kamil Debski
2015-03-18 16:27       ` Philipp Zabel [this message]
2015-04-07 14:44     ` Kamil Debski
2015-04-08 10:09       ` Hans Verkuil
2015-04-08 10:19       ` Pawel Osciak

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=1426696069.30356.52.camel@pengutronix.de \
    --to=p.zabel@pengutronix.de \
    --cc=hverkuil@xs4all.nl \
    --cc=k.debski@samsung.com \
    --cc=kernel@pengutronix.de \
    --cc=laurent.pinchart@ideasonboard.com \
    --cc=linux-media@vger.kernel.org \
    --cc=nicolas.dufresne@collabora.com \
    --cc=pawel@osciak.com \
    --cc=sakari.ailus@linux.intel.com \
    /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).