Re: [libav-devel] [PATCH] Cineform HD Decoder:

2016-01-12 Thread Diego Biurrun
On Sun, Jan 10, 2016 at 12:31:17AM +, Kieran Kunhya wrote: > > Unchecked mallocs cause global warming, please think of the planet. > > > >> +l_h[i][0] = tmp[i]; > >> +l_h[i][1] = tmp[i] + 2 * w8 * h8; > >> +//l_h[i][2] = ll2; > >> +l_h[i][3] = tmp[i]; > >> +

Re: [libav-devel] [PATCH] Cineform HD Decoder:

2016-01-09 Thread Kieran Kunhya
> Unchecked mallocs cause global warming, please think of the planet. > >> +l_h[i][0] = tmp[i]; >> +l_h[i][1] = tmp[i] + 2 * w8 * h8; >> +//l_h[i][2] = ll2; >> +l_h[i][3] = tmp[i]; >> +l_h[i][4] = tmp[i] + 2 * w4 * h4; >> +//l_h[i][5] = ll1; >> +

Re: [libav-devel] [PATCH] Cineform HD Decoder:

2016-01-04 Thread Derek Buitenhuis
On 1/4/2016 8:32 AM, Anton Khirnov wrote: > missing the props, probably lossy+intraonly Some CFHD files seem to have skip frames, so perhaps not the latter? - Derek ___ libav-devel mailing list libav-devel@libav.org https://lists.libav.org/mailman/listi

Re: [libav-devel] [PATCH] Cineform HD Decoder:

2016-01-04 Thread Vittorio Giovara
On Mon, Jan 4, 2016 at 1:04 AM, Kieran Kunhya wrote: > Decodes YUV422P10 samples in AVI and MOV (Gopro Studio) > Older files with more subbands, skips, Bayer not supported > --- > +static av_cold int cfhd_init_decoder(AVCodecContext *avctx) > +{ > +CFHDContext *s = avctx->priv_data; > + > +

Re: [libav-devel] [PATCH] Cineform HD Decoder:

2016-01-04 Thread Diego Biurrun
On Mon, Jan 04, 2016 at 12:04:08AM +, Kieran Kunhya wrote: > --- a/libavcodec/Makefile > +++ b/libavcodec/Makefile > @@ -212,6 +212,7 @@ OBJS-$(CONFIG_CDGRAPHICS_DECODER) += cdgraphics.o > OBJS-$(CONFIG_CDXL_DECODER)+= cdxl.o > OBJS-$(CONFIG_CINEPAK_DECODER) += cinepa

Re: [libav-devel] [PATCH] Cineform HD Decoder:

2016-01-04 Thread Anton Khirnov
Quoting Kieran Kunhya (2016-01-04 01:04:08) > Decodes YUV422P10 samples in AVI and MOV (Gopro Studio) > Older files with more subbands, skips, Bayer not supported > --- > libavcodec/Makefile | 1 + > libavcodec/allcodecs.c | 1 + > libavcodec/avcodec.h| 1 + > libavcodec/cfhd.c

[libav-devel] [PATCH] Cineform HD Decoder:

2016-01-03 Thread Kieran Kunhya
Decodes YUV422P10 samples in AVI and MOV (Gopro Studio) Older files with more subbands, skips, Bayer not supported --- libavcodec/Makefile | 1 + libavcodec/allcodecs.c | 1 + libavcodec/avcodec.h| 1 + libavcodec/cfhd.c | 567