Re: [FFmpeg-devel] [PATCH v3 1/2] codec: bitpacked: add decoder

2017-03-16 Thread Damien Riegel
On Tue, Feb 28, 2017 at 11:10:23PM +0100, Michael Niedermayer wrote: > On Tue, Feb 28, 2017 at 01:39:07PM -0500, Damien Riegel wrote: > > Add a codec capable of decoding some formats of the RFC4175. For now > > it's only capable of handling YCbCr-4:2:2 with 8-bit or 10-bit depth. > > > > For 8-bit

Re: [FFmpeg-devel] [PATCH v3 1/2] codec: bitpacked: add decoder

2017-02-28 Thread Michael Niedermayer
On Tue, Feb 28, 2017 at 01:39:07PM -0500, Damien Riegel wrote: > Add a codec capable of decoding some formats of the RFC4175. For now > it's only capable of handling YCbCr-4:2:2 with 8-bit or 10-bit depth. > > For 8-bit it's a simple pass-through, for 10-bit it depacks the stream > in the AV_PIX_F

[FFmpeg-devel] [PATCH v3 1/2] codec: bitpacked: add decoder

2017-02-28 Thread Damien Riegel
Add a codec capable of decoding some formats of the RFC4175. For now it's only capable of handling YCbCr-4:2:2 with 8-bit or 10-bit depth. For 8-bit it's a simple pass-through, for 10-bit it depacks the stream in the AV_PIX_FMT_YUV422P10 pixel format. Signed-off-by: Damien Riegel --- Changes in