summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
* g723.1: remove unused #includesMans Rullgard2012-08-10
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* ARM: add missing "cc" clobber in av_clipl_int32_arm()Mans Rullgard2012-08-10
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* rtmp: Factorize the code by adding handle_invoke_errorSamuel Pitoiset2012-08-09
| | | | Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
* rtmp: Factorize the code by adding handle_invoke_statusSamuel Pitoiset2012-08-09
| | | | Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
* rtmp: Factorize the code by adding handle_invoke_resultSamuel Pitoiset2012-08-09
| | | | Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
* libavutil: remove unused av_abort() macroMans Rullgard2012-08-09
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* ffmenc: replace if/abort with assert()Mans Rullgard2012-08-09
| | | | | | | | The condition is trivially true, but keeping the assert() is sensible to avoid FFM_HEADER_SIZE ever getting out of sync with the actual code. Signed-off-by: Mans Rullgard <mans@mansr.com>
* libavutil: drop offsetof() fallback definitionMans Rullgard2012-08-09
| | | | | | | | | The only compiler I have that does not define the standard offsetof() macro is "Bruce's C Compiler", a simple compiler for producing 8/16-bit 8086 code, usually for use in early stages of PC booting. Signed-off-by: Mans Rullgard <mans@mansr.com>
* libavutil: drop fallback definitions of INTxx_MIN/MAXMans Rullgard2012-08-09
| | | | | | | This list is incomplete (we also use UINT16_MAX), so there does not appear to be any system we care about that needs these. Signed-off-by: Mans Rullgard <mans@mansr.com>
* configure: Check for a sctp struct instead of just the headerMichael Niedermayer2012-08-09
| | | | | | | | | | | | This fixes build failures on debian/kfreebsd, which has the sctp.h header, but it is currently broken (a cpp test succeeds, but a compile test fails), see http://bugs.debian.org/684330 for details. Also remove the checked item from HAVE_LIST, since the corresponding HAVE_* define isn't used by the source code. Signed-off-by: Martin Storsjö <martin@martin.st>
* configure: suncc: Add -xc99 to dependency flags, required on SolarisDiego Biurrun2012-08-09
|
* doxygen: Fix function parameter names to match the codeDiego Biurrun2012-08-09
|
* doc: Drop obsolete shared libs cflags hint to workaround Cygwin gcc bugsDiego Biurrun2012-08-09
|
* swf: Move shared table out of the header fileDiego Biurrun2012-08-09
|
* swf: Move swf_audio_codec_tags table to the only place it is usedDiego Biurrun2012-08-09
|
* fate: add G.723.1 decoder testsKostya Shishkov2012-08-09
|
* motion_est: drop inline from sad_hpel_motion_search()Mans Rullgard2012-08-09
| | | | | | | This function is only ever called through a function pointer, so marking it inline makes no sense. Signed-off-by: Mans Rullgard <mans@mansr.com>
* motion_est: remove unused macrosMans Rullgard2012-08-09
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* motion_est: remove useless no_motion_search() functionMans Rullgard2012-08-09
| | | | | | | | At both places this function is called, mb_[xy] == s->mb_[xy] making the call together with following code equivalent to simply assigning zeros. Signed-off-by: Mans Rullgard <mans@mansr.com>
* lagarith: frame multithreadingHendrik Leppkes2012-08-09
| | | | | | | About 2x speedup going from 1 to 2 threads. 1.7s to 0.85s on foreman CIF. Signed-off-by: Janne Grunau <janne-libav@jannau.net>
* doxygen: qdm2: Drop documentation for non-existing function parametersDiego Biurrun2012-08-09
|
* build: add HOSTOBJS to SUBDIR_VARS listDiego Biurrun2012-08-09
| | | | | Even though HOSTOBJS are not referenced directly in subdirectory Makefile snippets right now, robustness requires resetting the variable contents.
* mpegvideo: reduce excessive inlining of mpeg_motion()Mans Rullgard2012-08-09
| | | | | | | | | The main benefit of inlining this function is from constant propagation for the 'field_based' argument. Instead of inlining all calls, create two versions of the function for field_based values of 0 and 1. Signed-off-by: Mans Rullgard <mans@mansr.com>
* mpegvideo: convert mpegvideo_common.h to a .c fileMans Rullgard2012-08-09
| | | | | | | | | | This file defines a single, huge function, MPV_motion(), which although being declared inline is not actually inlined by the compiler (for good reason). There is thus no sense in defining this function in a header file, resulting in multiple copies of it in the final library. Signed-off-by: Mans Rullgard <mans@mansr.com>
* build: factor out mpegvideo.o dependencies to CONFIG_MPEGVIDEOMans Rullgard2012-08-09
| | | | | | | This adds a hidden config variable for the mpegvideo.o dependency and selects from the codecs which require it. Signed-off-by: Mans Rullgard <mans@mansr.com>
* Move MASK_ABS macro to libavcodec/mathops.hMans Rullgard2012-08-09
| | | | | | | | | | | | This macro is only used in two places, both in libavcodec, so this is a more sensible place for it. Two small tweaks to the macro are made: - removing the trailing semicolon - dropping unnecessary 'volatile' from the x86 asm Signed-off-by: Mans Rullgard <mans@mansr.com>
* x86: move MANGLE() and related macros to libavutil/x86/asm.hMans Rullgard2012-08-09
| | | | | | These x86-specific macros do not belong in generic code. Signed-off-by: Mans Rullgard <mans@mansr.com>
* x86: rename libavutil/x86_cpu.h to libavutil/x86/asm.hMans Rullgard2012-08-09
| | | | | | | This puts x86-specific things in the x86/ subdirectory where they belong. Signed-off-by: Mans Rullgard <mans@mansr.com>
* aacdec: Don't fall back to the old output configuration when no old ↵Alex Converse2012-08-08
| | | | | | configuration is present. Fixes MP4 files where the first frame is broken.
* rtmp: Add message trackingSamuel Pitoiset2012-08-09
| | | | Signed-off-by: Martin Storsjö <martin@martin.st>
* rtsp: Support mpegts in raw udp packetsMartin Storsjö2012-08-09
| | | | | | | This is basically the same way as mpegts packets are parsed in rtpdec.c. Signed-off-by: Martin Storsjö <martin@martin.st>
* rtsp: Support receiving plain data over UDP without any RTP encapsulationMartin Storsjö2012-08-09
| | | | | | | EvoStream Media Server can serve data in this format, and VLC/live555 already supports it. Signed-off-by: Martin Storsjö <martin@martin.st>
* rtpdec: Remove an unused includeMartin Storsjö2012-08-09
| | | | Signed-off-by: Martin Storsjö <martin@martin.st>
* rtpenc: Remove an av_abort() that depends on user-supplied dataMartin Storsjö2012-08-09
| | | | Signed-off-by: Martin Storsjö <martin@martin.st>
* vsrc_movie: discourage its use with avconv.Anton Khirnov2012-08-08
|
* avconv: allow no input files.Anton Khirnov2012-08-08
| | | | It is now possible to use lavfi sources.
* avconv: prevent invalid reads in transcode_init()Anton Khirnov2012-08-08
|
* avconv: rename OutputStream.is_past_recording_time to finished.Anton Khirnov2012-08-08
| | | | | The new name is shorter and more accurate, since this variable is no longer used only for checking recording time constraint.
* avconv: split the code for processing input packets out of transcode()Anton Khirnov2012-08-08
|
* avconv: send EOF to lavfi even if flushing the decoder failsAnton Khirnov2012-08-08
|
* avconv: get rid of pointless temporary variable.Anton Khirnov2012-08-08
|
* avconv: simplify transcode().Anton Khirnov2012-08-08
| | | | Operate with a pointer to InputFile instead of its index in input_files.
* avconv: cosmeticsAnton Khirnov2012-08-08
| | | | | Replace for (;foo == 0;) with while (!foo) This is prettier.
* avconv: replace no_packet array in transcode() with a var in InputStreamAnton Khirnov2012-08-08
| | | | | This simplifies splitting code for reading from input out of transcode().
* avconv: remove unused variable from InputFile.Anton Khirnov2012-08-08
|
* avconv: remove commented out cruft.Anton Khirnov2012-08-08
|
* avconv: maintain sync on lavfi outputs.Anton Khirnov2012-08-08
| | | | | | | | | | Before this commit, poll_filters() reads all frames available on each lavfi output. This does not work for lavfi sources that produce an unlimited number of frames, e.g. color and similar. With this commit, poll_filters() reads from output with the lowest timestamp and returns to wait for more input if no frames are available on it.
* build: cosmetics: Reorder some lists in a more logical fashionDiego Biurrun2012-08-08
|
* x86: pngdsp: Fix assembly for OS/2Dave Yeo2012-08-08
| | | | | | | The a.out object format does not allow aligning sections. On OS/2 LD aligns sections to 16 bytes. Signed-off-by: Diego Biurrun <diego@biurrun.de>
* fate: add test for RTjpeg in nuv with frameheaderJanne Grunau2012-08-08
| | | | | Renames the old test to allow using fate-nuv as group for all nuv tests.