summaryrefslogtreecommitdiff
path: root/libavfilter/vf_lut.c
Commit message (Collapse)AuthorAge
* Mark AVFilterPad[] compound literals as const.Reimar Döffinger2011-11-06
| | | | | | | GCC 4.6.2 at least still seems to fail to put them in .rodata though, see also http://gcc.gnu.org/bugzilla/show_bug.cgi?id=37303 Signed-off-by: Reimar Döffinger <Reimar.Doeffinger@gmx.de>
* Make PIX_FMT format list arrays const.Reimar Döffinger2011-11-05
| | | | Signed-off-by: Reimar Döffinger <Reimar.Doeffinger@gmx.de>
* Add const to static arrays where it was forgotten.Reimar Döffinger2011-11-05
| | | | Signed-off-by: Reimar Döffinger <Reimar.Doeffinger@gmx.de>
* Merge remote-tracking branch 'qatar/master'Michael Niedermayer2011-10-18
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * qatar/master: avconv: add presets rtsp: Expose the flag options via private AVOptions for sdp and rtp, too rtsp: Make the rtsp flags avoptions set via a define rtpenc: Set a default video codec avoptions: Fix av_opt_flag_is_set rtp: Fix ff_rtp_get_payload_type doc: Update the documentation on setting options for RTSP rtsp: Remove the separate filter_source variable rtsp: Accept options via private avoptions instead of URL options rtsp: Simplify AVOption definitions rtsp: Merge the AVOption lists lavfi: port libmpcodecs delogo filter lavfi: port boxblur filter from libmpcodecs lavfi: add negate filter lavfi: add LUT (LookUp Table) generic filters AVOptions: don't segfault on NULL parameter in av_set_options_string() avio: Check for invalid buffer length. mpegenc/mpegtsenc: add muxrate private options. lavf: deprecate AVFormatContext.file_size mov: add support for TV metadata atoms tves, tvsn and stik Conflicts: Changelog doc/filters.texi doc/protocols.texi libavfilter/Makefile libavfilter/allfilters.c libavfilter/avfilter.h libavfilter/formats.c libavfilter/internal.h libavfilter/vf_boxblur.c libavfilter/vf_delogo.c libavfilter/vf_lut.c libavformat/mpegtsenc.c libavformat/utils.c libavformat/version.h libavutil/opt.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * lavfi: add negate filterStefano Sabatini2011-10-17
| | | | | | | | | | | | This filter is a simple wrapper around the LUT filter. Signed-off-by: Anton Khirnov <anton@khirnov.net>
| * lavfi: add LUT (LookUp Table) generic filtersStefano Sabatini2011-10-17
| | | | Signed-off-by: Anton Khirnov <anton@khirnov.net>
* AVOptions: rename remaining FF_OPT_TYPE_* to AV_OPT_TYPE_*.Clément Bœsch2011-10-17
|
* vf_lut: remove mathematical constants now redundant.Nicolas George2011-10-13
| | | | | Signed-off-by: Nicolas George <nicolas.george@normalesup.org> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* lavfi: remove usage of deprecated av_opt_set_defaults2() functionStefano Sabatini2011-10-02
| | | | Prefer av_opt_set_defaults() instead.
* libavfilter: fix --enable-smallMichael Niedermayer2011-07-21
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* vf_lut: set minimum and maximum alpha value for yuva420pStefano Sabatini2011-07-02
|
* vf_lut: add plane validity check in draw_slice()Stefano Sabatini2011-07-02
| | | | | | | | The value for inpic->data[plane] with plane >=4 is undefined, and it will contain in general random data. This change adds a check for exiting the loop when plane reaches the value 4. Fix crash (occurring for example with: format=rgba,lut).
* lavfi: make pix_fmt_is_in() in vf_lut.c an internal functionStefano Sabatini2011-07-01
| | | | | Also generalize it, making it accept ints rather than pixel formats. Allow factorization.
* vf_lut: fix draw_slice() in case of non packed image data for packed RGBStefano Sabatini2011-06-27
| | | | | The previous code was erroneously assuming that the linesize was equivalent to width*pixel_step, which is not always true.
* lavfi: add layout negotiation fields and helper functions.Mina Nagy Zaki2011-06-19
|
* lavfi: add negate filterStefano Sabatini2011-06-19
| | | | This filter is a simple wrapper around the LUT filter.
* lavfi: add LUT (LookUp Table) generic filtersStefano Sabatini2011-06-19