summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* RELEASE_NOTES: mention new filtersVittorio Giovara2014-03-231-3/+6
|
* lavc: drop ff_pixfmt_list_420Vittorio Giovara2014-03-2310-20/+52
|
* changelog: switch libx265 and compand entriesVittorio Giovara2014-03-231-2/+2
|
* configure: Always use -DOPJ_STATIC when checking for openjpegLuca Barbato2014-03-231-2/+2
| | | | | | Unbreaks windows systems not providing pkgconf files. Reported-By: Rafaël Carré <funman@videolan.org>
* movenc: Allow override of major brand in ftyp atomJohn Stebbins2014-03-232-1/+6
| | | | Signed-off-by: Tim Walker <tdskywalker@gmail.com>
* lagarith: Fix typo in printf format stringDiego Biurrun2014-03-221-1/+1
| | | | libavcodec/lagarith.c:671:16: warning: '#' flag used with ‘%u’ gnu_printf format [-Wformat]
* dsputil: Move thirdpel-related bits into their own contextDiego Biurrun2014-03-2212-370/+489
|
* x86: dsputil: Move hpeldsp-related declarations to a separate headerDiego Biurrun2014-03-226-18/+42
|
* ppc: dsputil: Move hpeldsp-related declarations to a separate headerDiego Biurrun2014-03-225-8/+37
|
* x86: dsputil: Move fpel declarations to a separate headerDiego Biurrun2014-03-229-21/+50
|
* dsputil: Refactor duplicated CALL_2X_PIXELS / PIXELS16 macrosDiego Biurrun2014-03-2212-43/+68
|
* dsputil: Move ff_zigzag_direct and ff_crop_tab declarations to mathops.hDiego Biurrun2014-03-2214-14/+21
|
* imgconvert: Move ff_deinterlace_line_*_mmx declarations out of dsputilDiego Biurrun2014-03-223-16/+18
|
* x86: dsputil: Move inline assembly macros to a separate headerDiego Biurrun2014-03-228-76/+108
|
* nuv: Reuse the DSPContext from RTJpegContextDiego Biurrun2014-03-223-23/+27
| | | | | | | There is no point in populating NuvContext with another DSPContext. Also split static and dynamic initialization bits to avoid running the static initialization parts over and over.
* float_dsp: Replace arch optimization ifdefs by if cascadeDiego Biurrun2014-03-221-9/+8
| | | | Arch-specific optimizations are handled this way everywhere else.
* avcodec: more correct printf specifiersDiego Biurrun2014-03-2226-98/+172
|
* avfilter: more correct printf format specifiersDiego Biurrun2014-03-222-3/+5
|
* vaapi: switch ff_vaapi_get_surface_id from Picture to AVFramewm42014-03-206-13/+13
| | | | Signed-off-by: Anton Khirnov <anton@khirnov.net>
* vdpau: switch ff_vdpau_get_surface_id from Picture to AVFramewm42014-03-206-13/+13
| | | | | | | | This gets rid of aliasing completely unrelated structs to Picture. Fixes the remaining compilation warnings in the vdpau code. Signed-off-by: Anton Khirnov <anton@khirnov.net>
* vdpau: don't assume Picture and H264Picture are the samewm42014-03-206-16/+15
| | | | | | | | | The code passed H264Picture* and Picture*, and assumed the hwaccel_picture_private field was in the same place in both structs. Somehow this happened to work in Libav, but broke in FFmpeg (and probably subtly breaks in Libav too). Signed-off-by: Anton Khirnov <anton@khirnov.net>
* dsputil: Use correct type in me_cmp_func function pointerDiego Biurrun2014-03-209-91/+95
|
* build: Group general components separate from de/encoders in arch MakefilesDiego Biurrun2014-03-204-31/+39
| | | | This is in line with how the top-level libavcodec Makefile is structured.
* dsputil: Conditionally compile dsputil code on all architecturesDiego Biurrun2014-03-202-12/+12
|
* dsputil: Propagate bit depth information to all (sub)init functionsDiego Biurrun2014-03-2014-85/+83
| | | | This avoids recalculating the value over and over again.
* arm: dsputil: K&R formatting cosmeticsDiego Biurrun2014-03-204-21/+29
|
* ppc: dsputil: Drop trailing semicolon from macrosDiego Biurrun2014-03-202-29/+29
| | | | This allows for a more natural macro usage.
* ppc: dsputil: Merge some declarations and initializationsDiego Biurrun2014-03-206-270/+219
|
* ppc: dsputil: Simplify some ifdeffed function definitionsDiego Biurrun2014-03-201-13/+5
|
* ppc: dsputil: Drop some unnecessary parenthesesDiego Biurrun2014-03-202-9/+9
|
* ppc: dsputil: more K&R formatting cosmeticsDiego Biurrun2014-03-204-416/+437
|
* ppc: dsputil: K&R formatting cosmeticsDiego Biurrun2014-03-203-391/+429
|
* ppc: dsputil: comment formatting and wording/grammar improvementsDiego Biurrun2014-03-207-199/+180
|
* hpeldsp_template: Merge some declarations and initializationsDiego Biurrun2014-03-201-4/+4
|
* hpeldsp_template: K&R formatting cosmeticsDiego Biurrun2014-03-201-213/+297
|
* hpel_template: Drop some unnecessary parenthesesDiego Biurrun2014-03-201-3/+3
|
* hpel_template: K&R formatting cosmeticsDiego Biurrun2014-03-201-72/+117
|
* float-dsp-test: do not use C99's predefined __func__Janne Grunau2014-03-201-9/+9
| | | | | It is not supported by all compilers on FATE. Fixes "some test were skipped" errors.
* float_dsp: Use LOCAL_ALIGNED for instead of DECLARE_ALIGNED within functionsMartin Storsjö2014-03-191-23/+25
| | | | | | This fixes fate-float_dsp-test on RVCT 4.0. Signed-off-by: Martin Storsjö <martin@martin.st>
* configure: ppc: Disable ldbrx instruction by defaultDiego Biurrun2014-03-191-0/+2
| | | | | Only enable it for CPUs that support it. This restores the behavior prior to 7a650caf.
* mxf: Lowercase UL stringsLuca Barbato2014-03-191-41/+42
| | | | The specification uses lower case most of the time.
* mxf: Verbose debug loggingLuca Barbato2014-03-191-2/+27
| | | | | Print the UL in code format and in the short format used by the specification.
* mxf: Override faulty PreviousPartition entriesLuca Barbato2014-03-191-0/+20
| | | | | | | | | | Some files set the PreviousPartition field to point to its own offset. If we are parsing forward the Previous partition is immediately known and its value could be used, otherwise we can safely point to the header. Reported-By: Jean Baptiste Kempf <jb@videolan.org>
* mxf: Add additional H264 PictureEssenceCodingLuca Barbato2014-03-191-0/+1
| | | | Unbreak some MXF Proxy files.
* aarch64: float_dsp NEON assemblerJanne Grunau2014-03-185-2/+279
| | | | | | | Ported from arm NEON and added vector_dmul_scalar. Functions between 1.5 and 5 times faster than the C implementations using Apple's clang-503.0.19 on A7.
* libopenjpeg: Support rgba64 decodingVittorio Giovara2014-03-181-1/+1
|
* libopenjpeg: Support rgba64 encodingCarl Eugen Hoyos2014-03-181-0/+3
|
* libopenjpeg: K&R formatting cosmeticsVittorio Giovara2014-03-182-91/+91
|
* float_dsp: add test program and use it as fate testJanne Grunau2014-03-183-0/+290
|
* sbrdsp: move #if to disable all educational codeJanne Grunau2014-03-181-4/+8
| | | | Avoids a warning of the unused function 'autocorrelate'.
OpenPOWER on IntegriCloud