[FFmpeg-devel] [PATCH] Implement avfilter_add_colorspaces()

Michael Niedermayer michaelni
Sat Jan 2 18:44:44 CET 2010


On Sat, Jan 02, 2010 at 12:42:55AM +0100, Stefano Sabatini wrote:
> On date Friday 2010-01-01 22:03:56 +0100, Michael Niedermayer encoded:
> > On Fri, Jan 01, 2010 at 01:32:32PM +0100, Stefano Sabatini wrote:
> [...]
> > > Index: libavfilter-soc/ffmpeg/libavfilter/avfilter.h
> > > ===================================================================
> > > --- libavfilter-soc.orig/ffmpeg/libavfilter/avfilter.h	2009-12-30 01:24:53.000000000 +0100
> > > +++ libavfilter-soc/ffmpeg/libavfilter/avfilter.h	2010-01-01 13:10:31.000000000 +0100
> > > @@ -192,6 +192,14 @@
> > >  AVFilterFormats *avfilter_make_format_list(const enum PixelFormat *pix_fmts);
> > >  
> > >  /**
> > > + * Adds pix_fmt to the list of formats in formats.
> > > + *
> > > + * @return 0 in case of success or AVERROR(ENOMEM) if the formats list
> > > + * cannot be re-allocated.
> > > + */
> > 
> > I think ive said it in the past already, plase keep API/ABI in a way that is
> > not so locked down we need to bump the major version every day.
> > >= 0 success
> > <0 error code for example ENOMEM
> 
> Updated.
[...]
> +int avfilter_add_colorspace(AVFilterFormats *formats, enum PixelFormat pix_fmt)
> +{
> +    formats->formats = av_realloc(formats->formats,
> +                                  sizeof(formats->formats) * ++formats->format_count);
> +    if (!formats->formats)
> +        return AVERROR(ENOMEM);

memleak

[...]
-- 
Michael     GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB

The real ebay dictionary, page 3
"Rare item" - "Common item with rare defect or maybe just a lie"
"Professional" - "'Toy' made in china, not functional except as doorstop"
"Experts will know" - "The seller hopes you are not an expert"
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 189 bytes
Desc: Digital signature
URL: <http://lists.mplayerhq.hu/pipermail/ffmpeg-devel/attachments/20100102/5f0cf894/attachment.pgp>



More information about the ffmpeg-devel mailing list