Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1592721
| From | Randy Li <ayaka@soulik.info> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH v6 0/3] Add pixel format for 10 bits YUV video |
| Date | 2017-03-05 11:10 +0100 |
| Message-ID | <thBgZ-77S-1@gated-at.bofh.it> (permalink) |
| Organization | linux.* mail to news gateway |
Thanks to Clint's work, this version just correct some wrong info in the comment. I also offer a driver sample here, but it have been verified with the 10 bits properly. I lacks of the userspace tool. And I am not sure whether it is a properly way to support the pixel format used in rockchip, although it is not common used pixel format, but it could save lots of memory, it may be welcome by the other vendor, also I think the 3GR serial from Intel would use the same pixel format as the video IP comes from rockchip. Randy Li (3): drm_fourcc: Add new P010, P016 video format v4l: Add 10/16-bits per channel YUV pixel formats drm/rockchip: Support 10 bits yuv format in vop Documentation/media/uapi/v4l/pixfmt-p010.rst | 126 ++++++++++++++++++++++++ Documentation/media/uapi/v4l/pixfmt-p010m.rst | 135 ++++++++++++++++++++++++++ Documentation/media/uapi/v4l/pixfmt-p016.rst | 125 ++++++++++++++++++++++++ Documentation/media/uapi/v4l/pixfmt-p016m.rst | 134 +++++++++++++++++++++++++ Documentation/media/uapi/v4l/yuv-formats.rst | 4 + drivers/gpu/drm/drm_fourcc.c | 3 + drivers/gpu/drm/rockchip/rockchip_drm_fb.c | 1 + drivers/gpu/drm/rockchip/rockchip_drm_vop.c | 34 ++++++- drivers/gpu/drm/rockchip/rockchip_drm_vop.h | 1 + drivers/gpu/drm/rockchip/rockchip_vop_reg.c | 2 + include/uapi/drm/drm_fourcc.h | 32 ++++++ include/uapi/linux/videodev2.h | 5 + 12 files changed, 599 insertions(+), 3 deletions(-) create mode 100644 Documentation/media/uapi/v4l/pixfmt-p010.rst create mode 100644 Documentation/media/uapi/v4l/pixfmt-p010m.rst create mode 100644 Documentation/media/uapi/v4l/pixfmt-p016.rst create mode 100644 Documentation/media/uapi/v4l/pixfmt-p016m.rst -- 2.7.4
Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread
[PATCH v6 0/3] Add pixel format for 10 bits YUV video Randy Li <ayaka@soulik.info> - 2017-03-05 11:10 +0100
[PATCH v6 1/3] drm_fourcc: Add new P010, P016 video format Randy Li <ayaka@soulik.info> - 2017-03-05 11:10 +0100
Re: [PATCH v6 1/3] drm_fourcc: Add new P010, P016 video format Ville Syrjälä <ville.syrjala@linux.intel.com> - 2017-03-06 14:10 +0100
Re: [PATCH v6 1/3] drm_fourcc: Add new P010, P016 video format Ayaka <ayaka@soulik.info> - 2017-03-06 19:00 +0100
Re: [PATCH v6 1/3] drm_fourcc: Add new P010, P016 video format Ville Syrjälä <ville.syrjala@linux.intel.com> - 2017-03-06 19:50 +0100
Re: [PATCH v6 1/3] drm_fourcc: Add new P010, P016 video format Ayaka <ayaka@soulik.info> - 2017-03-06 21:30 +0100
[PATCH v6 2/3] v4l: Add 10/16-bits per channel YUV pixel formats Randy Li <ayaka@soulik.info> - 2017-03-05 11:10 +0100
[PATCH v6 3/3] drm/rockchip: Support 10 bits yuv format in vop Randy Li <ayaka@soulik.info> - 2017-03-05 11:10 +0100
csiph-web