Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-08-29Merge commit 'a64f6a04ac5773aeff2003897455dadb9609f18b'Michael Niedermayer
* commit 'a64f6a04ac5773aeff2003897455dadb9609f18b': dsputil: x86: Hide arch-specific initialization details Conflicts: libavcodec/x86/Makefile Merged-by: Michael Niedermayer <michaelni@gmx.at>
2013-08-29dsputil: x86: Hide arch-specific initialization detailsDiego Biurrun
Also give consistent names to init functions.
2013-05-16Merge commit 'b3ea76624ad1baab0b6bcc13f3f856be2f958110'Michael Niedermayer
* commit 'b3ea76624ad1baab0b6bcc13f3f856be2f958110': vf_aspect: use the name 's' for the pointer to the private context Remove commented-out debug #define cruft Conflicts: libavcodec/4xm.c libavcodec/dvdsubdec.c libavcodec/ituh263dec.c libavcodec/mpeg12.c libavfilter/avfilter.c libavfilter/vf_aspect.c libavfilter/vf_fieldorder.c libavformat/rtmpproto.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
2013-05-16Remove commented-out debug #define cruftDiego Biurrun
2013-04-20dsputil: Remove dct_bitsRonald S. Bultje
dct_bits is never set except in h264, where it is never used, thus remove it. Signed-off-by: Martin Storsjö <martin@martin.st>
2013-04-20dsputil: Remove hpel functions (moved to hpeldsp)Ronald S. Bultje
Signed-off-by: Martin Storsjö <martin@martin.st>
2013-04-20hpeldsp: Add half-pel functions (currently copies of dsputil)Ronald S. Bultje
Signed-off-by: Martin Storsjö <martin@martin.st>
2013-04-14Add avpriv_dsputil_init() and use it in lavfi where relevant.Clément Bœsch
dsputil_init() is deprecated and not meant to be exported. ff_dsputil_init() is internal to libavcodec and thus can not be used. avpriv_dsputil_init() is the version shared between libraries. This commit fixes 3 unjustified libavfilter deprecated warnings.
2013-04-10dsputil: Make square put/avg_pixels functions local to h264qpelRonald S. Bultje
Put a copy of the 8bit functions only in dsputil, where they are used for some other things (e.g. mpeg4qpel, mspel, cavsqpel). Signed-off-by: Martin Storsjö <martin@martin.st>
2013-04-08lavc: Move ff_cropTbl and ff_zigzag_direct from dsputil to mathtablesRonald S. Bultje
These are widely used throughout libavcodec, nothing dsputil-specific. Change ff_cropTbl to a statically initialized table, to avoid initializing it with a function call. Signed-off-by: Martin Storsjö <martin@martin.st>
2013-04-05Merge commit 'ed16c2dbf47cdd7c48825b4da6e7036698e5dde1'Michael Niedermayer
* commit 'ed16c2dbf47cdd7c48825b4da6e7036698e5dde1': h261: Remove H.261 loop filter from dsputil Merged-by: Michael Niedermayer <michaelni@gmx.at>
2013-04-05h261: Remove H.261 loop filter from dsputilDiego Biurrun
There is no arch-optimized version of the H.261 loop filter and there likely will never be, so the dsputil overhead does not give any benefit.
2013-03-14dsputil: remove duplicate or unused functions.Ronald S. Bultje
dct_bits is never set except in h264, where it is never used, thus remove it. Then, remove all functions that were set based on non-zero (32) values for dct_bits. Lastly, merge 9-14 bpp functions for get_pixels and draw_edge, which only care about pixel storage unit size, not actual bits used (i.e. they don't clip). Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-03-13Merge commit 'a8b6015823e628047a45916404c00044c5e80415'Michael Niedermayer
* commit 'a8b6015823e628047a45916404c00044c5e80415': dsputil: convert remaining functions to use ptrdiff_t strides Conflicts: libavcodec/dsputil.h libavcodec/dsputil_template.c libavcodec/h264qpel_template.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
2013-03-13dsputil: remove hpel functions (moved to hpeldsp).Ronald S. Bultje
2013-03-13hpeldsp: add half-pel functions (currently copies of dsputil).Ronald S. Bultje
2013-03-12dsputil: convert remaining functions to use ptrdiff_t stridesLuca Barbato
Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
2013-03-09dsputil: make square put/avg_pixels functions local to h264qpel.Ronald S. Bultje
Put a copy of the 8bit functions only in dsputil, where they are used for some other things (e.g. mpeg4qpel, mspel, cavsqpel). We could perhaps also try to share specifically the 8bit functions from h264qpel between it and the others, but that will be slightly more complicated. H264qpel already had these functions, so we can simply remove the duplicates. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-03-06Move ff_cropTbl and ff_zigzag_direct from dsputil to mathtables.Ronald S. Bultje
These are widely used throughout libavcodec, nothing dsputil-specific. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-02-20h264: Add add_pixels4/8() to h264dsp, and remove add_pixels4 from dsputilRonald S. Bultje
These functions are mostly H264-specific (the only other user I can spot is bink), and this allows us to special-case some functionality for H264. Also remove the 16-bit-coeff with >8bpp versions (unused) and merge the duplicate 32-bit-coeff for >8bpp (identical). Signed-off-by: Martin Storsjö <martin@martin.st>
2013-02-17dsputil: convert remaining op_pixels_funcLuca Barbato
Convert to diffptr_t the line_size parameters still int. Remove all the warnings in dsputil.c
2013-02-14Merge remote-tracking branch 'qatar/master'Michael Niedermayer
* qatar/master: doc/platform: Fix 10l typo dsputil: Move STRIDE_ALIGN macro to the only place it is used Conflicts: libavcodec/dsputil.h Merged-by: Michael Niedermayer <michaelni@gmx.at>
2013-02-13dsputil: Move STRIDE_ALIGN macro to the only place it is usedDiego Biurrun
2013-02-12Add add_pixels4/8() to h264dsp, and remove add_pixels4 from dsputil.Ronald S. Bultje
These functions are mostly H264-specific (the only other user I can spot is bink), and this allows us to special-case some functionality for H264. Also remove the 16-bit-coeff with >8bpp versions (unused) and merge the duplicate 32-bit-coeff for >8bpp (identical). Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-02-11Move ff_emulated_edge_mc prototypes to videodsp.Ronald S. Bultje
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-02-09Merge remote-tracking branch 'qatar/master'Michael Niedermayer
* qatar/master: dsputil: Move fdct function declarations to dct.h Conflicts: libavcodec/dsputil.h Merged-by: Michael Niedermayer <michaelni@gmx.at>
2013-02-09Merge commit '218aefce4472dc02ee3f12830a9a894bf7916da9'Michael Niedermayer
* commit '218aefce4472dc02ee3f12830a9a894bf7916da9': dsputil: Move LOCAL_ALIGNED macros to libavutil Conflicts: libavcodec/dvdec.c libavcodec/imc.c libavcodec/mpegvideo_motion.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
2013-02-09Merge commit '059866eb17cd3c66422a61d3e9c3305f55830a50'Michael Niedermayer
* commit '059866eb17cd3c66422a61d3e9c3305f55830a50': dsputil: Move WRAPPER8_16_SQ macro to the only place it is used Merged-by: Michael Niedermayer <michaelni@gmx.at>
2013-02-09Merge commit 'bf6b3ec924b4fb64d14df33077f4d4541d525dbf'Michael Niedermayer
* commit 'bf6b3ec924b4fb64d14df33077f4d4541d525dbf': dsputil: Move rnd_avg inline functions to a separate header Merged-by: Michael Niedermayer <michaelni@gmx.at>
2013-02-09Merge commit 'b9c2408b19dc9408e9dc0ce4a099af529bbfba3b'Michael Niedermayer
* commit 'b9c2408b19dc9408e9dc0ce4a099af529bbfba3b': dsputil: Remove commented-out, unused function declarations Merged-by: Michael Niedermayer <michaelni@gmx.at>
2013-02-09Merge commit '35685a3c2a1ec09f3c62dcfc4368fe9e92bcddf6'Michael Niedermayer
* commit '35685a3c2a1ec09f3c62dcfc4368fe9e92bcddf6': dsputil: Move ff_shrink* function declarations to separate header dsputil: Move ff_svq3 function declarations to a separate header Merged-by: Michael Niedermayer <michaelni@gmx.at>
2013-02-09Merge commit '6a4430407404bfe55581e66a86a496c9adf6fb44'Michael Niedermayer
* commit '6a4430407404bfe55581e66a86a496c9adf6fb44': dsputil: Move ff_h264_idct function declarations to a separate header Conflicts: libavcodec/dsputil.h Merged-by: Michael Niedermayer <michaelni@gmx.at>
2013-02-09Merge commit 'b9ba5253dd1232be4b48cfe61c31ff4b3de3d10a'Michael Niedermayer
* commit 'b9ba5253dd1232be4b48cfe61c31ff4b3de3d10a': dsputil: Move copy_block functions to a separate header dsputil: Drop unused functions copy_block{2|4|16} No functions are droped because they are used in several places. Merged-by: Michael Niedermayer <michaelni@gmx.at>
2013-02-09Merge commit 'b5b7b75e91e291c810ebd01868a42b53f267a87c'Michael Niedermayer
* commit 'b5b7b75e91e291c810ebd01868a42b53f267a87c': dsputil: Move get_penalty_factor() to the only place it is used. Conflicts: libavcodec/dsputil.h Merged-by: Michael Niedermayer <michaelni@gmx.at>
2013-02-09Merge commit '0b016eb99d38738e2c53e36549a4732a0f863b2e'Michael Niedermayer
* commit '0b016eb99d38738e2c53e36549a4732a0f863b2e': dsputil: Move ff_block_permute to mpegvideo_enc Merged-by: Michael Niedermayer <michaelni@gmx.at>
2013-02-09dsputil: Move fdct function declarations to dct.hDiego Biurrun
2013-02-09dsputil: Move LOCAL_ALIGNED macros to libavutilDiego Biurrun
2013-02-09dsputil: Move WRAPPER8_16_SQ macro to the only place it is usedDiego Biurrun
2013-02-09dsputil: Move rnd_avg inline functions to a separate headerDiego Biurrun
2013-02-09dsputil: Remove commented-out, unused function declarationsDiego Biurrun
2013-02-09dsp: make put_no_rnd_pixels_tab 4x4 bigMichael Niedermayer
This makes it match the other tables and fixes out of array acceses. Fixes CID980012 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-02-08dsputil: Move ff_shrink* function declarations to separate headerDiego Biurrun
2013-02-08dsputil: Move ff_h264_idct function declarations to a separate headerDiego Biurrun
2013-02-08dsputil: Move copy_block functions to a separate headerDiego Biurrun
2013-02-08dsputil: Move ff_svq3 function declarations to a separate headerDiego Biurrun
2013-02-08dsputil: Drop unused functions copy_block{2|4|16}Diego Biurrun
2013-02-08dsputil: Move get_penalty_factor() to the only place it is used.Diego Biurrun
2013-02-08dsputil: Move ff_block_permute to mpegvideo_encDiego Biurrun
2013-02-07Merge commit '79dad2a932534d1155079f937649e099f9e5cc27'Michael Niedermayer
* commit '79dad2a932534d1155079f937649e099f9e5cc27': dsputil: Separate h264chroma Conflicts: libavcodec/dsputil_template.c libavcodec/ppc/dsputil_ppc.c libavcodec/vc1dec.c libavcodec/vc1dsp.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
2013-02-06dsputil: fixup half a dozen bugs with ptrdiff vs int linesizeMichael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>