~ubuntu-branches/debian/sid/ffmpeg/sid

« back to all changes in this revision

Viewing changes to libavfilter/vf_hue.c

  • Committer: Package Import Robot
  • Author(s): Andreas Cadhalpun
  • Date: 2015-06-11 00:47:35 UTC
  • mfrom: (0.1.26)
  • Revision ID: package-import@ubuntu.com-20150611004735-vlyomyh8e919mkhb
Tags: 7:2.7-1
* Import new major upstream release 2.7.
   - Suggest new mpeg4_unpack_bframes bitstream filter instead of
     VirtualDub/Avidemux. (Closes: #781510)
* Add new symbols.
* Change maintainer to the pkg-multimedia team and move myself to uploaders.
* Let ffmpeg suggest ffmpeg-doc.
* Fix encdec autopkgtest to not fail, when skipping tests.
* Restrict shlib-with-non-pic-code lintian override to i386.
  Thanks to Jakub Wilk for the hint.
* Use '-strict -2' in the encdec autopkgtest also for probing/decoding.
* Disable loongson3 optimizations on mips, because they are not always
  available.
* Update debian/copyright.
* Update debian/tests/encdec_list.txt.

Show diffs side-by-side

added added

removed removed

Lines of Context:
233
233
        AV_PIX_FMT_YUVA420P,
234
234
        AV_PIX_FMT_NONE
235
235
    };
236
 
 
237
 
    ff_set_common_formats(ctx, ff_make_format_list(pix_fmts));
238
 
 
239
 
    return 0;
 
236
    AVFilterFormats *fmts_list = ff_make_format_list(pix_fmts);
 
237
    if (!fmts_list)
 
238
        return AVERROR(ENOMEM);
 
239
    return ff_set_common_formats(ctx, fmts_list);
240
240
}
241
241
 
242
242
static int config_props(AVFilterLink *inlink)