summaryrefslogtreecommitdiff
path: root/libpostproc
Commit message (Collapse)AuthorAge
* postproc: fix qp countMichael Niedermayer2014-10-13
| | | | | Found-by: ubitux Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* libpostproc: support grayscaleMichael Niedermayer2014-10-13
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* postproc/postprocess: fix quant store for fq modeMichael Niedermayer2014-10-12
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* postprocess: add YUV 4:4:0 supportMichael Niedermayer2014-10-12
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* postproc: add basic deblock filter visualization supportMichael Niedermayer2014-09-24
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* postproc/postprocess_template: mark unchanged function arguments constMichael Niedermayer2014-09-22
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* postprocess: prefetch* dont change anything, thus their arguments should be ↵Michael Niedermayer2014-09-22
| | | | | | const Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* postproc/postprocess: Avoid some ifs in do_a_deblock_C()Michael Niedermayer2014-09-19
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* postproc: Replace CLIP by av_clip_uint8Michael Niedermayer2014-09-19
| | | | | | drop "#define CLIP av_clip_uint8" Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* postproc/postprocess: remove redundant castsMichael Niedermayer2014-09-18
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* postproc/postprocess: Use FF_ARRAY_ELEMS() in pp_free_context() instead of ↵Michael Niedermayer2014-09-18
| | | | | | hard-coding their size Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* postproc/postprocess: Remove unused argument from reallocAlign()Michael Niedermayer2014-09-18
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* postproc/postprocess: use av_strtok()Michael Niedermayer2014-09-18
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* postprocess: make some variables in pp_get_mode_by_name_and_quality() constMichael Niedermayer2014-09-18
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* postproc: simplify forwarding return codesMichael Niedermayer2014-09-18
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* libpostproc/postprocess: avoid some if()Michael Niedermayer2014-09-18
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* postproc: use FFMIN/FFMAX where appropriateMichael Niedermayer2014-09-04
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* Add missing "const" all over the place.Reimar Döffinger2014-08-29
| | | | | | Only "./configure --enable-gpl" on x86 was tested. Signed-off-by: Reimar Döffinger <Reimar.Doeffinger@gmx.de>
* Drop remaining unneeded != NULLMichael Niedermayer2014-08-15
| | | | | Reviewed-by: Clément Bœsch <u@pkh.me> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* Merge commit 'f929ab0569ff31ed5a59b0b0adb7ce09df3fca39'Michael Niedermayer2014-08-15
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * commit 'f929ab0569ff31ed5a59b0b0adb7ce09df3fca39': cosmetics: Write NULL pointer equality checks more compactly Conflicts: cmdutils.c ffmpeg_opt.c ffplay.c libavcodec/dvbsub.c libavcodec/dvdsubdec.c libavcodec/dvdsubenc.c libavcodec/dxa.c libavcodec/libxvid_rc.c libavcodec/mpegvideo.c libavcodec/mpegvideo_enc.c libavcodec/rv10.c libavcodec/tiffenc.c libavcodec/utils.c libavcodec/vc1dec.c libavcodec/zmbv.c libavdevice/v4l2.c libavformat/matroskadec.c libavformat/movenc.c libavformat/sdp.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
* | bump libpostproc and libswresampleMichael Niedermayer2014-08-10
| | | | | | | | | | | | | | this is needed / avoids some headaches as one of their dependancies (libavutil) was bumped Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | Fix libpostproc compilation with !HAVE_6REGS.Carl Eugen Hoyos2014-04-24
| |
* | Automatically change MANGLE() into named inline asm operands when direct ↵Matt Oliver2014-03-18
| | | | | | | | | | | | | | | | symbol reference in inline asm are not supported. This is part of the patch-set for intel C inline asm on windows support Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | postproc: fix null pointer dereference with invalid option stringsMichael Niedermayer2013-12-11
| | | | | | | | | | Fixes CID1135760 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | Add Windows resource file support for shared librariesJames Almer2013-12-05
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Originally written by James Almer <jamrial@gmail.com> With the following contributions by Timothy Gu <timothygu99@gmail.com> * Use descriptions of libraries from the pkg-config file generation function * Use "FFmpeg Project" as CompanyName (suggested by Alexander Strasser) * Use "FFmpeg" for ProductName as MSDN says "name of the product with which the file is distributed" [1]. * Use FFmpeg's version (N-xxxxx-gxxxxxxx) for ProductVersion per MSDN [1]. * Only build the .rc files when --enable-small is not enabled. [1] http://msdn.microsoft.com/en-us/library/windows/desktop/aa381058.aspx Signed-off-by: James Almer <jamrial@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | postprocess_template: put rsp on the clobber list to prevent gcc from using ↵Michael Niedermayer2013-06-16
| | | | | | | | | | | | | | | | it in "q" Fixes Ticket2675 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | postproc/postprocess_template: remove empty commentsMichael Niedermayer2013-05-23
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | lavfi/pp: switch to an AVOptions-based system.Clément Bœsch2013-04-10
| | | | | | | | | | Also add and use the '|' separator instead of ':' since it's incompatible with the new option system...
* | libpostproc: silence valgrind/fate warning about using uninitialized dataMichael Niedermayer2013-03-25
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | Fix libpostproc compilation on x86_32 with disable-optimizations.Carl Eugen Hoyos2013-02-09
| |
* | build: postproc cleanup.Clément Bœsch2012-12-30
| | | | | | | | | | This reverts 79f80f5c, moves postproc along with the other libraries, and fix the postproc dependency to libavutil.
* | libpostproc: alloc a few bytes more in the temporary bufferMichael Niedermayer2012-12-28
| | | | | | | | | | | | | | | | | | This avoids dering reading 4 bytes prior the buffer (1 byte can be used) Fixes Ticket2057 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | libpostproc: Fix off by 1 error in the C dering codeMichael Niedermayer2012-12-28
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | libpostproc: fix leak of 2kbMichael Niedermayer2012-12-23
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | pp: fix a few typo in the template.Clément Bœsch2012-12-19
| |
* | doxy: add ref for lavfi, lpp and lsws.Clément Bœsch2012-12-11
| |
* | pp: add SSE2 deInterlaceInterpolateCubic().Clément Bœsch2012-11-18
| | | | | | | | | | | | 2124 decicycles in deInterlaceInterpolateCubic_C, 67100774 runs, 8090 skips 458 decicycles in deInterlaceInterpolateCubic_MMX2, 67107146 runs, 1718 skips 382 decicycles in deInterlaceInterpolateCubic_SSE2, 67107086 runs, 1778 skips
* | pp: add support for SSE2.Clément Bœsch2012-11-18
| |
* | pp: add auto detection cpu flag.Clément Bœsch2012-11-18
| |
* | pp: add various const for pointers.Clément Bœsch2012-11-18
| |
* | pp: simplify postProcess().Clément Bœsch2012-11-16
| |
* | pp: rework the way templating is done.Clément Bœsch2012-11-16
| | | | | | | | | | | | | | | | | | | | | | This refactoring simplifies the usage of the template: define the profile and include the template is all that is required. It should now be easier to add more instruction sets. The HAVE_* flags are changed with TEMPLATE_PP_* setting to avoid messing them up. See the top comment in postprocess_template.c for details.
* | pp: fix typo in avg() comment.Clément Bœsch2012-11-15
| |
* | pp: use av_clip_uint8 instead of a custom implementation.Clément Bœsch2012-11-15
| |
* | pp: fix a few typo in the internal header.Clément Bœsch2012-11-15
| |
* | pp: avoid overflow in w*hMichael Niedermayer2012-10-13
| | | | | | | | | | Fixes CID700580 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | postproc: Create version.h headerjamal2012-09-28
| | | | | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | postproc: Fix unprotected inline asmDerek Buitenhuis2012-09-11
| | | | | | | | | | Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | rename the remaining instances of HAVE_MMX2 to HAVE_MMXEXTXhmikosR2012-08-20
| | | | | | | | | | Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | Merge remote-tracking branch 'qatar/master'Michael Niedermayer2012-08-09
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * qatar/master: mpegvideo: reduce excessive inlining of mpeg_motion() mpegvideo: convert mpegvideo_common.h to a .c file build: factor out mpegvideo.o dependencies to CONFIG_MPEGVIDEO Move MASK_ABS macro to libavcodec/mathops.h x86: move MANGLE() and related macros to libavutil/x86/asm.h x86: rename libavutil/x86_cpu.h to libavutil/x86/asm.h aacdec: Don't fall back to the old output configuration when no old configuration is present. rtmp: Add message tracking rtsp: Support mpegts in raw udp packets rtsp: Support receiving plain data over UDP without any RTP encapsulation rtpdec: Remove an unused include rtpenc: Remove an av_abort() that depends on user-supplied data vsrc_movie: discourage its use with avconv. avconv: allow no input files. avconv: prevent invalid reads in transcode_init() avconv: rename OutputStream.is_past_recording_time to finished. Conflicts: configure doc/filters.texi ffmpeg.c ffmpeg.h libavcodec/Makefile libavcodec/aacdec.c libavcodec/mpegvideo.c libavformat/version.h Merged-by: Michael Niedermayer <michaelni@gmx.at>