- 28 Mar, 2013 40 commits
-
-
Michael Niedermayer authored
The reason for the failure is unknown, this needs to be debuged and fixed Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
Michael Niedermayer authored
Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
Michael Niedermayer authored
* qatar/master: vmdav: convert to bytestream2 FATE: add a test for the join filter FATE: add a test for the volume filter Conflicts: libavcodec/vmdav.c Merged-by:
Michael Niedermayer <michaelni@gmx.at>
-
Michael Niedermayer authored
Signed-off-by:
Michael Niedermayer <michaelni@gmx.at>
-
Michael Niedermayer authored
* commit '43a8333a': FATE: add a test for the channelsplit filter FATE: add a test for the channelmap filter FATE: add a test for the negate filter FATE: add a test for the overlay filter Conflicts: tests/fate/filter.mak Merged-by:
Michael Niedermayer <michaelni@gmx.at>
-
Michael Niedermayer authored
* commit 'ea290d91': FATE: add a test for the setpts filter FATE: add a test for the hqdn3d filter FATE: add a test for the transpose filter FATE: add a test for the unsharp filter Conflicts: tests/ref/fate/filter-hqdn3d Merged-by:
Michael Niedermayer <michaelni@gmx.at>
-
Michael Niedermayer authored
* commit '1a6d4bd7': FATE: add a test for the fade filter FATE: add a test for the drawbox filter FATE: add a test for the boxblur filter FATE: add a test for the gradfun filter Conflicts: tests/fate/filter.mak tests/ref/fate/filter-gradfun our gradfun test is renamed to gradfun-ubitux as its name conflicts and it was requested to be kept. Feel free to rename, change, finetune ... Merged-by:
Michael Niedermayer <michaelni@gmx.at>
-
Michael Niedermayer authored
* commit '1ae44c87': lavfi/gradfun: remove rounding to match C and SSE code. lavfi/gradfun: fix dithering in MMX code. lavfi/gradfun: fix rounding in MMX code. lavfi/gradfun: do not increment DC pointer for odd values. fate: filter: Add dependencies avconv: add options for reading filtergraphs from a file. Conflicts: Changelog doc/ffmpeg.texi doc/filters.texi ffmpeg.h ffmpeg_opt.c libavfilter/vf_gradfun.c tests/fate/filter.mak Merged-by:
Michael Niedermayer <michaelni@gmx.at>
-
Paul B Mahol authored
Signed-off-by:
Paul B Mahol <onemda@gmail.com>
-
Michael Niedermayer authored
* commit 'cf53704c': AVOptions: make av_set_options_string() forward options to child objects win32: Use 64-bit fstat/lseek variants for MSVC as well win32: Make ff_win32_open more robust Conflicts: libavformat/os_support.c Merged-by:
Michael Niedermayer <michaelni@gmx.at>
-
Michael Niedermayer authored
* commit 'e9cc9883': win32: Allow other programs to open the same files configure: Add error_resilience as dependency to the eatqi decoder Conflicts: configure libavformat/os_support.c Merged-by:
Michael Niedermayer <michaelni@gmx.at>
-
Michael Niedermayer authored
* commit '472391b9': ape: use correct context for the bit table printed in debug build: Move setting of SRC_DIR to the only place it is used Merged-by:
Michael Niedermayer <michaelni@gmx.at>
-
Michael Niedermayer authored
* commit 'b4d24b47': build: Remove configure-generated .config file on distclean msmpeg4: Split decoding related functions to a separate file Conflicts: Makefile libavcodec/Makefile libavcodec/msmpeg4.c Merged-by:
Michael Niedermayer <michaelni@gmx.at>
-
Michael Niedermayer authored
* commit 'e557584a': mpeg12: Move Mpeg1Context declaration to the only place it is used Conflicts: libavcodec/mpeg12.h libavcodec/mpeg12dec.c Merged-by:
Michael Niedermayer <michaelni@gmx.at>
-
Michael Niedermayer authored
* commit '1b6d6674': Split MPEG-1/2 decoder code off from MPEG-1/2 common code Conflicts: libavcodec/Makefile libavcodec/mpeg12.c Merged-by:
Michael Niedermayer <michaelni@gmx.at>
-
Michael Niedermayer authored
* commit 'eee2000b': mpeg12: Move some ff_mpeg1_* function declarations to a more suitable place Merged-by:
Michael Niedermayer <michaelni@gmx.at>
-
Michael Niedermayer authored
* commit 'b6649ab5': cosmetics: Remove unnecessary extern keywords from function declarations Conflicts: libswscale/x86/swscale.c Merged-by:
Michael Niedermayer <michaelni@gmx.at>
-
Michael Niedermayer authored
* commit '1db6a080': dca: Move ff_dca_convert_bitstream() to the DCA common code vdpau: wrap codec specific functions in appropiate #ifs Conflicts: libavcodec/Makefile Merged-by:
Michael Niedermayer <michaelni@gmx.at>
-
Michael Niedermayer authored
* commit '757d8586': vdpau: fix obsolete mpeg1 vdpau decoder when mpeg2 is disabled Conflicts: libavcodec/mpeg12.c Nothing changes as the buggy code is not in ffmpeg Merged-by:
Michael Niedermayer <michaelni@gmx.at>
-
Michael Niedermayer authored
* commit 'd767e2f9': configure: fix dependencies of XvMC and old vdpau mpeg2 decoders Merged-by:
Michael Niedermayer <michaelni@gmx.at>
-
Alexandra Khirnova authored
Signed-off-by:
Anton Khirnov <anton@khirnov.net>
-
Anton Khirnov authored
-
Anton Khirnov authored
-
Anton Khirnov authored
-
Anton Khirnov authored
-
Anton Khirnov authored
-
Anton Khirnov authored
-
Anton Khirnov authored
-
Anton Khirnov authored
-
Anton Khirnov authored
-
Anton Khirnov authored
-
Anton Khirnov authored
-
Anton Khirnov authored
-
Anton Khirnov authored
-
Anton Khirnov authored
-
Clément Bœsch authored
There is no noticable benefit for such precision. Signed-off-by:
Anton Khirnov <anton@khirnov.net>
-
Clément Bœsch authored
Current dithering only uses the first 4 instead of the whole 8 random values. Signed-off-by:
Anton Khirnov <anton@khirnov.net>
-
Clément Bœsch authored
Current code divides before increasing precision. Also reduce upper bound for strength from 255 to 64. This will prevent an overflow in the SSSE3 and MMX filter_line code: delta is expressed as an u16 being shifted by 2 to the left. If it overflows, having a strength not above 64 will make sure that m is set to 0 (making the m*m*delta >> 14 expression void). A value above 64 should not make any sense unless gradfun is used as a blur filter. Signed-off-by:
Anton Khirnov <anton@khirnov.net>
-
Clément Bœsch authored
First DC is only used once otherwise. This also makes the code consistent with ASM versions. Signed-off-by:
Anton Khirnov <anton@khirnov.net>
-
Diego Biurrun authored
Signed-off-by:
Anton Khirnov <anton@khirnov.net>
-