summaryrefslogtreecommitdiff
path: root/libavcodec/x86/huffyuvdsp_init.c
Commit message (Collapse)AuthorAge
* avcodec/huffyuvdsp : add add_int16 AVX2 funcMartin Vignali2017-11-21
|
* avcodec/huffyuvdsp(enc) : move duplicate macro to a template fileMartin Vignali2017-11-21
|
* lavc/huffyuvdsp: only transmit the pix_fmt instead of the whole avctxClément Bœsch2017-03-22
| | | | | Only the pixel format is required in that init function. This will also simplify the incoming merge.
* huffyuvdsp: move functions only used by huffyuv from lossless_videodspJames Almer2017-01-12
| | | | Signed-off-by: James Almer <jamrial@gmail.com>
* lossless_videodsp: move shared functions from huffyuvdspJames Almer2017-01-12
| | | | | | Several codecs other than huffyuv use them. Signed-off-by: James Almer <jamrial@gmail.com>
* Merge commit '009331303a6462d07cbe94aef9c446f1a1695519'Michael Niedermayer2014-07-05
|\ | | | | | | | | | | | | | | | | | | | | | | | | * commit '009331303a6462d07cbe94aef9c446f1a1695519': x86: huffyuvdsp: Move inline assembly to init file Conflicts: libavcodec/x86/Makefile libavcodec/x86/huffyuvdsp.h libavcodec/x86/huffyuvdsp_init.c libavcodec/x86/huffyuvdsp_mmx.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * x86: huffyuvdsp: Move inline assembly to init fileDiego Biurrun2014-07-05
| | | | | | | | | | This avoids a link failure with MMX disabled as now code and initialization are compiled under the same condition.
* | x86/huffyuvdsp: fix some prototypesJames Almer2014-05-31
| | | | | | | | | | | | | | Remove duplicate prototypes and fix int -> intptr_t in another Signed-off-by: James Almer <jamrial@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | x86: huffyuvdsp: fewer functions for x86_64Christophe Gisquet2014-05-30
| | | | | | | | | | | | When there are 2 functions that are <= SSE2, only one is needed for x86_64. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | x86: huffyuvdsp: add_hfyu_left_pred_bgr32Christophe Gisquet2014-05-30
| | | | | | | | | | | | | | C MMX SSE2 Cycles: 3092 1053 578 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | avcodec/huffyuvdsp: Change w to intptr in add_hfyu_median_pred() and ↵Michael Niedermayer2014-05-30
| | | | | | | | | | | | | | | | add_hfyu_left_pred() This avoids potential issues with the high 32bits being random in x86-64 asm Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | x86: huffyuvdsp: add SSE2 median predictionChristophe Gisquet2014-05-30
| | | | | | | | | | | | From 5010c to 4566 on lagarith YUY2. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | x86: huffyuvdsp: port add_bytes to yasmChristophe Gisquet2014-05-29
| | | | | | | | | | | | | | C MMX SSE2 Cycles: 2972 587 302 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | Merge commit '512f3ffe9b4bb86767c2b1176554407c75fe1a5c'Michael Niedermayer2014-05-28
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * commit '512f3ffe9b4bb86767c2b1176554407c75fe1a5c': dsputil: Split off HuffYUV encoding bits into their own context Conflicts: configure libavcodec/dsputil.c libavcodec/dsputil.h libavcodec/huffyuv.h libavcodec/huffyuvenc.c libavcodec/pngenc.c libavcodec/x86/dsputilenc_mmx.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
* | Merge commit '0d439fbede03854eac8a978cccf21a3425a3c82d'Michael Niedermayer2014-05-27
|/ | | | | | | | | | | | | | | | | | | | * commit '0d439fbede03854eac8a978cccf21a3425a3c82d': dsputil: Split off HuffYUV decoding bits into their own context Conflicts: configure libavcodec/dsputil.c libavcodec/dsputil.h libavcodec/huffyuv.h libavcodec/huffyuvdec.c libavcodec/lagarith.c libavcodec/vble.c libavcodec/x86/Makefile libavcodec/x86/dsputil.asm libavcodec/x86/dsputil_init.c libavcodec/x86/dsputil_mmx.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
* dsputil: Split off HuffYUV decoding bits into their own contextDiego Biurrun2014-05-27
Also shorten HuffYUV context member names to avoid clutter.