summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* mmf: K&R formatting cosmeticsLuca Barbato2013-05-091-39/+45
| | | | Signed-off-by: Diego Biurrun <diego@biurrun.de>
* x86: dsputil: Remove unused argument from QPEL_OP macroDiego Biurrun2013-05-081-4/+4
|
* x86: vf_yadif: Remove stray dsputil_mmx #includeDiego Biurrun2013-05-081-1/+0
|
* x86: dsputil: Move TRANSPOSE4 macro to the only place it is usedDiego Biurrun2013-05-082-11/+11
|
* x86: dsputil: Move constant declarations into separate headerDiego Biurrun2013-05-086-24/+57
|
* x86: dsputil: Group all assembly constants together in constants.cDiego Biurrun2013-05-082-15/+11
|
* x86: dsputil: Move ff_pd assembly constants to the only place they are usedDiego Biurrun2013-05-083-13/+11
|
* msvc: Move linker pragma from config.h to libavutil/internal.hMartin Storsjö2013-05-082-5/+5
| | | | | | | This makes linking succeed for tools that include config.h but don't link to libavutil. Signed-off-by: Martin Storsjö <martin@martin.st>
* fate-run: Drop unnecessary regtest() indirectionDiego Biurrun2013-05-071-7/+3
| | | | | The indirection was used to abstract from the different -regression.sh scripts. Now that only one remains, this indirection is pointless.
* x86: dsputil: Remove unused ff_pb_3F constantDiego Biurrun2013-05-072-2/+0
|
* x86: dsputil: Remove unused MOVQ_BONE macroDiego Biurrun2013-05-072-9/+0
|
* x86: dsputil: Move rv40-specific functions where they belongDiego Biurrun2013-05-073-26/+27
|
* x86: dsputil hpeldsp: Move shared template functions into separate objectDiego Biurrun2013-05-077-26/+69
|
* x86: rnd_template: Eliminate pointless OP_AVG macro indirectionDiego Biurrun2013-05-074-12/+8
|
* oma: properly forward errors in oma_read_packetLuca Barbato2013-05-071-2/+4
| | | | | | Prevent spurios EIO on EOF. CC:libav-stable@libav.org
* oma: return meaningful errorsLuca Barbato2013-05-071-6/+6
|
* lavc: do not leak frames in avcodec_decode_audio4Luca Barbato2013-05-071-3/+1
| | | | | | | Notwithstanding the return value the frame should be freed if is not going to be used. Reported-by: Matthew Wolenetz <wolenetz@chromium.org>
* nut: use meaningful error valuesLuca Barbato2013-05-071-11/+17
| | | | Fix the mispresented EINVAL for EOF on partial files, among the other.
* FATE: use a less ambiguous end time for filter-trim-time testAnton Khirnov2013-05-071-1/+1
| | | | | 0.1 seconds at 25 fps is exactly 2.5 frames, which may be rounded either to 2 or 3 on different platforms.
* configure: add dependencies to lavfi .pc fileAnton Khirnov2013-05-071-1/+6
| | | | | | | The scale filter depends on sws, resample on lavr, and movie on lavf and lavc. Fixes Bug 502.
* configure: make avconv select (a)trim filtersAnton Khirnov2013-05-071-2/+2
| | | | They are now used for -ss/-t
* avconv: remove -deinterlaceAnton Khirnov2013-05-074-62/+1
| | | | | It is incompatible with refcounted frames and since it's been deprecated for a long time now, fixing it is not worth the effort.
* indeo3: use unaligned reads on reference blocks.Anton Khirnov2013-05-071-20/+20
| | | | | | | They are not guaranteed to be aligned. Fixes Bug 503. CC:libav-stable@libav.org
* jpeg2000dec: initialize static data just onceJanne Grunau2013-05-061-14/+18
|
* jpeg2000dec: cleanup properly after decoding errorsJanne Grunau2013-05-061-6/+7
| | | | Fixes memory leak in fate-redcode-demux.
* fate-jpeg2000-dcinema: force output to xyz12leJanne Grunau2013-05-061-1/+1
| | | | Fixes Fate tests on big-endian configs.
* vf_scale: add endianness conversion pixel format in query_formatsJanne Grunau2013-05-061-2/+4
|
* swscale: support endianness conversion for AV_PIX_FMT_XYZ12Janne Grunau2013-05-062-1/+4
|
* swscale: add support for endianness only conversionJanne Grunau2013-05-063-2/+20
| | | | Use bitfields in FormatEntry array to avoid wasting an int for each flag.
* pixdesc: add function to return pixel format with swapped endiannesJanne Grunau2013-05-063-1/+60
|
* swscale: Use alpha from the right row in yuva2rgba_cMartin Storsjö2013-05-061-6/+6
| | | | | | | | | | Every other pixel had the alpha channel taken from the wrong row. This fixes bug 504. CC: libav-stable@libav.org Signed-off-by: Martin Storsjö <martin@martin.st>
* swscale: Remove unnecessary backslashesMartin Storsjö2013-05-061-8/+8
| | | | Signed-off-by: Martin Storsjö <martin@martin.st>
* jpeg2000: Fix uninitialized data errors pointed out by valgrind/memcheckNicolas Bertrand2013-05-061-4/+13
| | | | Signed-off-by: Diego Biurrun <diego@biurrun.de>
* x86: hpeldsp: Move avg_pixels8_x2_mmx() out of hpeldsp_rnd_template.cDiego Biurrun2013-05-065-25/+58
| | | | | The function is only instantiated once, so there is no point in keeping it in a template file.
* x86: hpeldsp: Only compile MMX hpeldsp code if MMX is enabledDiego Biurrun2013-05-061-2/+2
|
* x86: More specific ifdefs for dsputil/hpeldsp init functionsDiego Biurrun2013-05-062-16/+16
|
* wav: Always seek to an even offsetLuca Barbato2013-05-061-2/+8
| | | | | | | RIFF chunks are aligned to 16bit according to the specification. Bug-Id:500 CC:libav-stable@libav.org
* nut: use a define for the nut versionLuca Barbato2013-05-063-2/+4
| | | | Ease switching version in the future and make evident why that value.
* bgmc: Do not mark ff_bgmc_decode_init() as av_coldDiego Biurrun2013-05-051-2/+2
| | | | The function is possibly called once per block.
* avcodec: Add av_cold attributes to end functions missing themDiego Biurrun2013-05-057-10/+14
|
* avformat: Add av_cold attributes to init functions missing themDiego Biurrun2013-05-0510-12/+27
|
* configure: Check for getenvMartin Storsjö2013-05-041-0/+3
| | | | | | | | | | | | | | | | When targeting the "windows store application" (metro) API subset (or the windows phone API subset), the getenv function isn't available. If it is unavailable, just define getenv to NULL. The check uses check_func_headers, since the function actually might exist in the libraries, but is hidden in the headers. The fallback is in config.h since msvc can't do -D defines with parameters on the command line, and it's used both within the libraries and the frontend applications (so a libavutil internal header wouldn't be enough). Signed-off-by: Martin Storsjö <martin@martin.st>
* swscale: Add av_cold attributes to init functions missing themDiego Biurrun2013-05-043-10/+15
|
* avutil: Add av_cold attributes to init functions missing themDiego Biurrun2013-05-049-11/+20
|
* lavfi: let gcc realign the stack on public graph driving functionsHendrik Leppkes2013-05-042-4/+8
| | | | | | | | | | The functions which actually drive the filter graph by pushing frames through it need to ensure an aligned stack for SIMD functions. This fixes a crash in YADIF filter when using a mingw build in a MSVC application. Signed-off-by: Martin Storsjö <martin@martin.st>
* sctp: Add a note on why sctp_recvmsg and sctp_sendmsg have ff_-prefixesDiego Biurrun2013-05-041-4/+4
|
* avs: Increase magic value score above file extension scoreDiego Biurrun2013-05-041-1/+3
| | | | | This should fix misdetection of AVS files as AviSynth scripts when AviSynth support is enabled (Bugzilla #357).
* avformat: Add AVPROBE_SCORE_EXTENSION define and use where appropriateDiego Biurrun2013-05-0436-53/+55
|
* build: output-example: Add avutil to ELIBS in link commandDiego Biurrun2013-05-041-1/+1
| | | | | | | | | output-example links against swscale, which depends on avutil. In standard configurations, by pure good luck, the libs before swscale pull in all of swscale's dependencies and linking succeeds. However, in some configurations like --disable-asm this is not the case and linking fails. Hardcode the dependency to avoid a more general Makefile refactoring.
* avresample: Add av_cold attributes to init functions missing themDiego Biurrun2013-05-042-3/+4
|
OpenPOWER on IntegriCloud