Re: [FFmpeg-devel] [PATCHv3] avcodec: Cineform HD Decoder

2016-01-25 Thread Kieran Kunhya
On Mon, Jan 25, 2016 at 2:42 PM, Ronald S. Bultje wrote: > Hi, > > On Sun, Jan 24, 2016 at 7:34 PM, Kieran Kunhya wrote: > >> +static inline void filter(int16_t *output, ptrdiff_t out_stride, int16_t >> *low, ptrdiff_t low_stride, >> + int16_t *high, ptrdiff_t high_stride

Re: [FFmpeg-devel] [PATCHv3] avcodec: Cineform HD Decoder

2016-01-25 Thread Ronald S. Bultje
Hi, On Sun, Jan 24, 2016 at 7:34 PM, Kieran Kunhya wrote: > +static inline void filter(int16_t *output, ptrdiff_t out_stride, int16_t > *low, ptrdiff_t low_stride, > + int16_t *high, ptrdiff_t high_stride, int len, > uint8_t clip) Should this be a DSP function? (That i

Re: [FFmpeg-devel] [PATCHv3] avcodec: Cineform HD Decoder

2016-01-25 Thread Ronald S. Bultje
Hi, On Mon, Jan 25, 2016 at 9:34 AM, Kieran Kunhya wrote: > On 25 Jan 2016 2:29 p.m., "Michael Niedermayer" > wrote: > > > > On Mon, Jan 25, 2016 at 12:34:03AM +, Kieran Kunhya wrote: > > > Decodes YUV 4:2:2 10-bit and RGB 12-bit files. > > > Older files with more subbands, skips, Bayer, al

Re: [FFmpeg-devel] [PATCHv3] avcodec: Cineform HD Decoder

2016-01-25 Thread Kieran Kunhya
On 25 Jan 2016 2:29 p.m., "Michael Niedermayer" wrote: > > On Mon, Jan 25, 2016 at 12:34:03AM +, Kieran Kunhya wrote: > > Decodes YUV 4:2:2 10-bit and RGB 12-bit files. > > Older files with more subbands, skips, Bayer, alpha not supported. > > Alpha requires addition of GBRAP12 pixel format. >

Re: [FFmpeg-devel] [PATCHv3] avcodec: Cineform HD Decoder

2016-01-25 Thread Michael Niedermayer
On Mon, Jan 25, 2016 at 12:34:03AM +, Kieran Kunhya wrote: > Decodes YUV 4:2:2 10-bit and RGB 12-bit files. > Older files with more subbands, skips, Bayer, alpha not supported. > Alpha requires addition of GBRAP12 pixel format. > --- > libavcodec/Makefile | 1 + > libavcodec/allcodecs.c

Re: [FFmpeg-devel] [PATCHv3] avcodec: Cineform HD Decoder

2016-01-25 Thread Rostislav Pehlivanov
On 25 January 2016 at 00:34, Kieran Kunhya wrote: > Decodes YUV 4:2:2 10-bit and RGB 12-bit files. > Older files with more subbands, skips, Bayer, alpha not supported. > Alpha requires addition of GBRAP12 pixel format. > --- > libavcodec/Makefile | 1 + > libavcodec/allcodecs.c | 1 + >

Re: [FFmpeg-devel] [PATCHv3] avcodec: Cineform HD Decoder

2016-01-25 Thread Paul B Mahol
On 1/25/16, Kieran Kunhya wrote: > Decodes YUV 4:2:2 10-bit and RGB 12-bit files. > Older files with more subbands, skips, Bayer, alpha not supported. > Alpha requires addition of GBRAP12 pixel format. > --- > libavcodec/Makefile | 1 + > libavcodec/allcodecs.c | 1 + > libavcodec/avcode