linux-media.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [GIT PULL FOR v5.2] cedrus: add H.264 support
@ 2019-04-24 15:08 Hans Verkuil
  0 siblings, 0 replies; 3+ messages in thread
From: Hans Verkuil @ 2019-04-24 15:08 UTC (permalink / raw)
  To: Linux Media Mailing List; +Cc: Maxime Ripard, Paul Kocialkowski

Changes since the previous pull request: rebased and some sparse warnings fixed.

Regards,

	Hans

The following changes since commit a4dfc8a24796ff312d1d307e11f26f8ca466e938:

  media: MAINTAINERS: Update AO CEC with ao-cec-g12a driver (2019-04-22 13:16:35 -0400)

are available in the Git repository at:

  git://linuxtv.org/hverkuil/media_tree.git tags/br-cedrus-h264b

for you to fetch changes up to 5fd433dbb1bc5ca18ae2913b7e9fbdba2631ca8d:

  media: cedrus: Add H264 decoding support (2019-04-24 16:50:45 +0200)

----------------------------------------------------------------
Tag branch

----------------------------------------------------------------
Maxime Ripard (3):
      media: pixfmt: Add H264 Slice format
      media: pixfmt: Add H264_SLICE_RAW format documentation
      media: cedrus: Add H264 decoding support

Pawel Osciak (1):
      media: uapi: Add H264 low-level decoder API compound controls.

 Documentation/media/uapi/v4l/biblio.rst            |   9 +
 Documentation/media/uapi/v4l/ext-ctrls-codec.rst   | 569 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 Documentation/media/uapi/v4l/pixfmt-compressed.rst |  25 +++
 Documentation/media/uapi/v4l/vidioc-queryctrl.rst  |  30 +++
 Documentation/media/videodev2.h.rst.exceptions     |   5 +
 drivers/media/v4l2-core/v4l2-ctrls.c               |  42 +++++
 drivers/media/v4l2-core/v4l2-ioctl.c               |   1 +
 drivers/staging/media/sunxi/cedrus/Makefile        |   3 +-
 drivers/staging/media/sunxi/cedrus/cedrus.c        |  31 ++++
 drivers/staging/media/sunxi/cedrus/cedrus.h        |  38 +++-
 drivers/staging/media/sunxi/cedrus/cedrus_dec.c    |  13 ++
 drivers/staging/media/sunxi/cedrus/cedrus_h264.c   | 576 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 drivers/staging/media/sunxi/cedrus/cedrus_hw.c     |   4 +
 drivers/staging/media/sunxi/cedrus/cedrus_regs.h   |  91 +++++++++
 drivers/staging/media/sunxi/cedrus/cedrus_video.c  |   9 +
 include/media/h264-ctrls.h                         | 197 ++++++++++++++++++++
 include/media/v4l2-ctrls.h                         |  13 +-
 17 files changed, 1653 insertions(+), 3 deletions(-)
 create mode 100644 drivers/staging/media/sunxi/cedrus/cedrus_h264.c
 create mode 100644 include/media/h264-ctrls.h

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [GIT PULL FOR v5.2] cedrus: add H.264 support
  2019-04-12 12:07 Hans Verkuil
@ 2019-04-22 17:33 ` Mauro Carvalho Chehab
  0 siblings, 0 replies; 3+ messages in thread
From: Mauro Carvalho Chehab @ 2019-04-22 17:33 UTC (permalink / raw)
  To: Hans Verkuil; +Cc: Linux Media Mailing List, Maxime Ripard, Paul Kocialkowski

Hi Hans,

Em Fri, 12 Apr 2019 14:07:45 +0200
Hans Verkuil <hverkuil@xs4all.nl> escreveu:

> The following changes since commit 1c3ec30bb23023d738b538e64ac3028902d53692:
> 
>   media: index.rst: exclude Indexes section from latex/pdf output (2019-03-30 09:42:35 -0400)
> 
> are available in the Git repository at:
> 
>   git://linuxtv.org/hverkuil/media_tree.git tags/br-cedrus-h264
> 
> for you to fetch changes up to 496ab402ea2cb3b0ebba3d0e699e0454b611c820:
> 
>   media: cedrus: Add H264 decoding support (2019-04-12 13:32:21 +0200)

Could you please rebase this one on the top of the media tree?

It came with some conflicts. Perhaps some of the patches here were
(partially?) applied already, as when I tried to fix the conflict,
it complained that some switch would have a duplicated case.

Regards,
Mauro

Thanks,
Mauro

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [GIT PULL FOR v5.2] cedrus: add H.264 support
@ 2019-04-12 12:07 Hans Verkuil
  2019-04-22 17:33 ` Mauro Carvalho Chehab
  0 siblings, 1 reply; 3+ messages in thread
From: Hans Verkuil @ 2019-04-12 12:07 UTC (permalink / raw)
  To: Linux Media Mailing List; +Cc: Maxime Ripard, Paul Kocialkowski

The following changes since commit 1c3ec30bb23023d738b538e64ac3028902d53692:

  media: index.rst: exclude Indexes section from latex/pdf output (2019-03-30 09:42:35 -0400)

are available in the Git repository at:

  git://linuxtv.org/hverkuil/media_tree.git tags/br-cedrus-h264

for you to fetch changes up to 496ab402ea2cb3b0ebba3d0e699e0454b611c820:

  media: cedrus: Add H264 decoding support (2019-04-12 13:32:21 +0200)

----------------------------------------------------------------
Tag branch

----------------------------------------------------------------
Maxime Ripard (3):
      media: pixfmt: Add H264 Slice format
      media: pixfmt: Add H264_SLICE_RAW format documentation
      media: cedrus: Add H264 decoding support

Pawel Osciak (1):
      media: uapi: Add H264 low-level decoder API compound controls.

 Documentation/media/uapi/v4l/biblio.rst            |   9 +
 Documentation/media/uapi/v4l/ext-ctrls-codec.rst   | 569 +++++++++++++++++++++++++++++++++++++++++++++++++++
 Documentation/media/uapi/v4l/pixfmt-compressed.rst |  25 +++
 Documentation/media/uapi/v4l/vidioc-queryctrl.rst  |  30 +++
 Documentation/media/videodev2.h.rst.exceptions     |   5 +
 drivers/media/v4l2-core/v4l2-ctrls.c               |  42 ++++
 drivers/media/v4l2-core/v4l2-ioctl.c               |   1 +
 drivers/staging/media/sunxi/cedrus/Makefile        |   3 +-
 drivers/staging/media/sunxi/cedrus/cedrus.c        |  31 +++
 drivers/staging/media/sunxi/cedrus/cedrus.h        |  38 +++-
 drivers/staging/media/sunxi/cedrus/cedrus_dec.c    |  13 ++
 drivers/staging/media/sunxi/cedrus/cedrus_h264.c   | 574 ++++++++++++++++++++++++++++++++++++++++++++++++++++
 drivers/staging/media/sunxi/cedrus/cedrus_hw.c     |   4 +
 drivers/staging/media/sunxi/cedrus/cedrus_regs.h   |  91 +++++++++
 drivers/staging/media/sunxi/cedrus/cedrus_video.c  |   9 +
 include/media/h264-ctrls.h                         | 197 ++++++++++++++++++
 include/media/v4l2-ctrls.h                         |  13 +-
 17 files changed, 1651 insertions(+), 3 deletions(-)
 create mode 100644 drivers/staging/media/sunxi/cedrus/cedrus_h264.c
 create mode 100644 include/media/h264-ctrls.h

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2019-04-24 15:09 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-04-24 15:08 [GIT PULL FOR v5.2] cedrus: add H.264 support Hans Verkuil
  -- strict thread matches above, loose matches on Subject: below --
2019-04-12 12:07 Hans Verkuil
2019-04-22 17:33 ` Mauro Carvalho Chehab

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).