summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* libxvid: Separate libxvid encoder from libxvid rate control code.Diego Biurrun2012-05-09
| | | | This allows compiling the Xvid rate control code without the encoder.
* jpeglsdec: Remove write-only variable in ff_jpegls_decode_lse().Diego Biurrun2012-05-09
| | | | libavcodec/jpeglsdec.c:54:9: warning: variable ‘len’ set but not used
* fate: cosmetics: lowercase some commentsDiego Biurrun2012-05-09
|
* fate: Give more consistent names to some RealVideo/RealAudio tests.Diego Biurrun2012-05-09
|
* lavfi: add avfilter_get_audio_buffer_ref_from_arrays().Stefano Sabatini2012-05-09
| | | | Signed-off-by: Anton Khirnov <anton@khirnov.net>
* lavfi: add extended_data to AVFilterBuffer.Anton Khirnov2012-05-09
| | | | | This is similar to what has previously been done in AVFrame to allow dealing with more than 8 channels.
* lavc: check that extended_data is properly set in avcodec_encode_audio2().Anton Khirnov2012-05-09
|
* lavc: pad last audio frame with silence when needed.Anton Khirnov2012-05-09
|
* samplefmt: add a function for filling a buffer with silence.Anton Khirnov2012-05-09
|
* samplefmt: add a function for copying audio samples.Anton Khirnov2012-05-09
|
* lavr: do not try to copy to uninitialized output audio data.Anton Khirnov2012-05-09
| | | | | This would happen at least when lavr is used as a fifo with no conversion.
* lavr: make avresample_read() with NULL output discard samples.Anton Khirnov2012-05-09
|
* fate: split idroq audio and video into separate testsMans Rullgard2012-05-09
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* fate: improve dependenciesMans Rullgard2012-05-09
| | | | | | | This makes only tests actually using avconv depend on it. The remaining tests already depend on what they need. Signed-off-by: Mans Rullgard <mans@mansr.com>
* fate: add convenient shorthands for ea-vp6, libavcodec, libavutil testsDiego Biurrun2012-05-09
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* fate: split some combined tests into separate audio and video testsDiego Biurrun2012-05-09
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* fate: fix dependencies for probe testsMans Rullgard2012-05-09
| | | | | | | Only the probe tests should depend on avprobe and these should be enabled only if avprobe is configured. Signed-off-by: Mans Rullgard <mans@mansr.com>
* mips: intreadwrite: fix inline asm for gcc 4.8Mans Rullgard2012-05-09
| | | | | | | | | Just like gcc 4.6 and later on ARM, gcc 4.8 on MIPS generates inefficient code when a known-unaligned location is used as a memory input operand. This applies the same fix as has been previously done to the ARM version of the code. Signed-off-by: Mans Rullgard <mans@mansr.com>
* mips: intreadwrite: remove unnecessary inline asmMans Rullgard2012-05-09
| | | | | | | | GCC actually handles unaligned accesses correctly in all cases except, absurdly, 32-bit loads on mips64. The remaining asm is thus not needed, and removing it results in better code. Signed-off-by: Mans Rullgard <mans@mansr.com>
* lavfi: add video buffer sink, and use it in avtoolsAnton Khirnov2012-05-09
| | | | | | Also add the public interface libavfilter/buffersink.h. Based on a commit by Stefano Sabatini.
* lavfi: add a function for copying properties from AVFilterBufferRef->AVFrameAnton Khirnov2012-05-09
| | | | Based on a commit by Stefano Sabatini <stefano.sabatini-lala@poste.it>
* sctp: Initial tcp-alike sctp support with streamsLuca Barbato2012-05-08
| | | | | Signed-off-by: Jordi Ortiz <nenjordi@gmail.com> Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
* libschroedingerdec: Change AVPicture to AVFrame and use SchroTag to store ptsJordi Ortiz2012-05-08
| | | | Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
* options_table: Add some missing #includes to fix "make checkheaders".Alex Converse2012-05-08
| | | | Signed-off-by: Diego Biurrun <diego@biurrun.de>
* doc: Replace a stray reference to the old '-intra' flag.Alex Converse2012-05-08
|
* rtsp: Add content-type message header parsingJordi Ortiz2012-05-08
| | | | Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
* rtmp: Support 'rtmp_live', an option which specifies if the media is a live ↵Samuel Pitoiset2012-05-08
| | | | | | stream. Signed-off-by: Martin Storsjö <martin@martin.st>
* av_samples_fill_array: Mark unmodified function argument as const.Diego Biurrun2012-05-08
| | | | | libavcodec/utils.c:274: warning: passing argument 3 of ‘av_samples_fill_arrays’ discards qualifiers from pointer target type ./libavutil/samplefmt.h:151: note: expected ‘uint8_t *’ but argument is of type ‘const uint8_t *’
* lagarith: add YUY2 decoding supportKostya Shishkov2012-05-08
| | | | | | | Unlike other variants, for YUY2 we need to use different prediction: * on line 0 for luma we should left predict starting from the second pixel * on line 1 we should left predict first 4 pixels for luma and 2 for chroma * median prediction employed here is taken directly from HuffYUV
* Support decoding unaligned rgb24 lagarith.Carl Eugen Hoyos2012-05-08
| | | | Signed-off-by: Kostya Shishkov <kostya.shishkov@gmail.com>
* dv: Split profile handling code into a separate file.Diego Biurrun2012-05-07
|
* flvenc: use AVFormatContext, not AVCodecContext for logging.Anton Khirnov2012-05-07
| | | | Encoder tag being used for muxer messages is confusing.
* mov: Remove write-only variable in mov_read_chan().Diego Biurrun2012-05-07
| | | | libavformat/mov.c:597:25: warning: variable ‘cflags’ set but not used
* fate: Change the probe-format refs to match the final text format committed.Alex Converse2012-05-07
|
* fate: Add avprobe as a make dependencyAlex Converse2012-05-07
|
* Add probe fate tests to test for regressions in detecting media types.Ronald S. Bultje2012-05-07
| | | | Signed-off-by: Alex Converse <alex.converse@gmail.com>
* fate: Add oneline comparison methodMans Rullgard2012-05-07
| | | | Signed-off-by: Alex Converse <alex.converse@gmail.com>
* qdm2: clip array indices returned by qdm2_get_vlc().Ronald S. Bultje2012-05-07
| | | | | | | | | | Prevents subsequent overreads when these numbers are used as indices in arrays. Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind CC: libav-stable@libav.org Signed-off-by: Justin Ruggles <justin.ruggles@gmail.com>
* avplay: properly close/reopen AVAudioResampleContext on channel layout changeJustin Ruggles2012-05-07
| | | | fixes Bug#280
* avcodec: do not needlessly set packet size to 0 in avcodec_encode_audio2()Justin Ruggles2012-05-07
| | | | It is already set to 0 by av_free_packet()
* avcodec: for audio encoding, reset output packet when it is not validJustin Ruggles2012-05-07
|
* avcodec: refactor avcodec_encode_audio2() to merge common branchesJustin Ruggles2012-05-07
|
* avcodec: remove fallbacks for AVCodec.encode() in avcodec_encode_audio2()Justin Ruggles2012-05-07
| | | | We no longer have any audio encoders using AVCodec.encode().
* libschroedinger: Switch to function names more in line with Libav style.Diego Biurrun2012-05-07
|
* Move code shared between libdirac and libschroedinger to libschroedinger.Diego Biurrun2012-05-07
| | | | | This also involves making some function static and changing the name prefixes of some functions and structures.
* lavfi: uninline avfilter_copy_buffer_ref_props().Anton Khirnov2012-05-07
| | | | | A nontrivial public function such as this should most certainly NOT be inline.
* lavf: add missing '*' in a doxy.Anton Khirnov2012-05-07
|
* h264: Remove a commented-out function pointer typedef.Diego Biurrun2012-05-07
|
* txd: Remove write-only variable in txd_decode_frame().Diego Biurrun2012-05-07
| | | | libavcodec/txd.c:49:60: warning: variable ‘mipmap_count’ set but not used
* mmvideo.c: Remove unused variable in mm_decode_pal().Diego Biurrun2012-05-07
| | | | libavcodec/mmvideo.c:87:9: warning: variable ‘i’ set but not used