Re: [FFmpeg-devel] [PATCH 1/2] avutil: add P010 pixel format

2016-01-26 Thread Wang Bin
Shall we add nv15 like other nv formats in pixfmt.h? ___ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel

Re: [FFmpeg-devel] [PATCH 1/2] avutil: add P010 pixel format

2016-01-26 Thread Hendrik Leppkes
On Thu, Jan 7, 2016 at 8:17 PM, Michael Niedermayer wrote: > On Thu, Jan 07, 2016 at 12:11:21PM +0100, Hendrik Leppkes wrote: >> P010 is the 10-bit variant of NV12 (planar luma, packed chroma), using two >> bytes per component to store 10-bit data plus 6-bit zeroes in the LSBs. >> --- >> libavuti

Re: [FFmpeg-devel] [PATCH 1/2] avutil: add P010 pixel format

2016-01-07 Thread Hendrik Leppkes
On Thu, Jan 7, 2016 at 1:26 PM, wm4 wrote: > On Thu, 7 Jan 2016 12:11:21 +0100 > Hendrik Leppkes wrote: > >> P010 is the 10-bit variant of NV12 (planar luma, packed chroma), using two >> bytes per component to store 10-bit data plus 6-bit zeroes in the LSBs. >> --- >> libavutil/pixdesc.c | 24 +

Re: [FFmpeg-devel] [PATCH 1/2] avutil: add P010 pixel format

2016-01-07 Thread wm4
On Thu, 7 Jan 2016 12:11:21 +0100 Hendrik Leppkes wrote: > P010 is the 10-bit variant of NV12 (planar luma, packed chroma), using two > bytes per component to store 10-bit data plus 6-bit zeroes in the LSBs. > --- > libavutil/pixdesc.c | 24 > libavutil/pixfmt.h | 4 +

[FFmpeg-devel] [PATCH 1/2] avutil: add P010 pixel format

2016-01-07 Thread Hendrik Leppkes
P010 is the 10-bit variant of NV12 (planar luma, packed chroma), using two bytes per component to store 10-bit data plus 6-bit zeroes in the LSBs. --- libavutil/pixdesc.c | 24 libavutil/pixfmt.h | 4 2 files changed, 28 insertions(+) diff --git a/libavutil/pixdesc