summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
* dca: K&R formatting cosmeticsShitiz Garg2012-01-03
| | | | Signed-off-by: Diego Biurrun <diego@biurrun.de>
* dct: K&R formatting cosmeticsAneesh Dogra2012-01-03
| | | | Signed-off-by: Diego Biurrun <diego@biurrun.de>
* lavf: flush decoders in avformat_find_stream_info().Anton Khirnov2012-01-03
| | | | | This means that avformat_find_stream_info() now works properly with multiple threads, so there's no need to force thread count to 1.
* win32: detect number of CPUs using affinityDaniel Verkamp2012-01-03
| | | | Signed-off-by: Janne Grunau <janne-libav@jannau.net>
* Add av_popcount64Daniel Verkamp2012-01-03
| | | | Signed-off-by: Janne Grunau <janne-libav@jannau.net>
* snow: Restore three mistakenly removed casts.Diego Biurrun2012-01-03
|
* mpegenc: use avctx->slices as number of slicesJanne Grunau2012-01-02
| | | | | | Adds a new member to MpegEncContext to hold the number of used slice contexts. Fixes segfaults with '-threads 17 -thread_type slice' and fate-vsynth{1,2}-mpeg{2,4}thread{,_ilace} with --disable-pthreads.
* v410enc: fix undefined signed left shift caused by integer promotionJanne Grunau2012-01-02
|
* Release notes: mention cleaned up header includesReinhard Tartler2012-01-02
| | | | | A rebuild in debian revealed that this broke compilation of a number packages: http://bugs.debian.org/cgi-bin/pkgreport.cgi?users=siretart@tauware.de;tag=ftbfs-libav0.8
* fix Changelog fileReinhard Tartler2012-01-02
| | | | | Both the Indeo 4 decoder and the SMJPEG demuxer were included in the 0.8_beta1 release.
* Fix a bunch of typos.Diego Biurrun2012-01-02
|
* Drop some pointless void* return value casts from av_malloc() invocations.Diego Biurrun2012-01-02
|
* wavpack: fix typos in previous cosmetic clean-up commitJustin Ruggles2012-01-02
|
* wavpack: cosmetics: K&R pretty-printingJustin Ruggles2012-01-02
|
* avconv: remove the 'codec framerate is different from stream' warningAnton Khirnov2012-01-02
| | | | | Codec timebase is not framerate and the situation when it's different from AVStream.r_frame_rate is quite common, nothing to warn about.
* wavpack: determine sample_fmt before requesting a bufferHendrik Leppkes2012-01-01
| | | | Signed-off-by: Justin Ruggles <justin.ruggles@gmail.com>
* bmv audio: implement new audio decoding APIJustin Ruggles2012-01-01
|
* mpegaudiodec: skip all channels when skipping granulesJustin Ruggles2012-01-01
| | | | | Also fix calculation of new position when switching buffers. This fixes "overread" error messages when seeking.
* mpegenc: simplify muxrate calculationJanne Grunau2012-01-02
| | | | | | | The fate-h264-bsf-mp4toannexb failures were caused by an integer overflow of the unneeded multiplication. Inspired by patch by: Michael Niedermayer <michaelni@gmx.at>
* avconv: make -frames work for all types of streams, not just video.Anton Khirnov2012-01-01
|
* bfi: K&R cosmeticsAneesh Dogra2012-01-01
| | | | Signed-off-by: Anton Khirnov <anton@khirnov.net>
* bgmc: K&R cleanupAneesh Dogra2012-01-01
| | | | Signed-off-by: Anton Khirnov <anton@khirnov.net>
* rawdec: Set start_time to 0 for raw audio files.Reimar Döffinger2012-01-01
| | | | | | | None of the raw audio files have timestamps, thus setting start_time to 0 should be reasonable. Signed-off-by: Anton Khirnov <anton@khirnov.net>
* Detect 'yuv2' as rawvideo also in avi.Carl Eugen Hoyos2012-01-01
| | | | Signed-off-by: Anton Khirnov <anton@khirnov.net>
* rawdec: propagate pict_type information to the output frameStefano Sabatini2012-01-01
| | | | Signed-off-by: Anton Khirnov <anton@khirnov.net>
* rawdec: Support more QT 1bpp rawvideo files.Piotr Bandurski2012-01-01
| | | | Signed-off-by: Anton Khirnov <anton@khirnov.net>
* avconv: free bitstream filtersJanne Grunau2012-01-01
|
* threads: limit the number of automatic threads to MAX_AUTO_THREADSJanne Grunau2012-01-01
| | | | | | The extra thread added in {frame_}*thread_init was not taken into account. Explicitly sets thread_count to 1 if only one CPU core was detected. Also fixes two typos in comments.
* avplay: K&R cleanupAneesh Dogra2012-01-01
| | | | Signed-off-by: Anton Khirnov <anton@khirnov.net>
* fate: use rgb24 as output format for dfa testsJanne Grunau2012-01-01
| | | | | | Palette is as supposed in native endianness. Converting the pal8 output to rgb24 is thus necessary for identical CRCs on big and little endian systems.
* threads: set thread_count to 1 when thread support is disabledJanne Grunau2012-01-01
|
* threads: introduce CODEC_CAP_AUTO_THREADS and add it to libx264Janne Grunau2012-01-01
| | | | | | Some external codecs have their own code to determine the best number of threads. This number is not necessary the number of cpu cores. Thread_count will be only 0 if the codec has CODEC_CAP_AUTO_THREADS.
* FATE: add tests for dfaOana Stratulat2011-12-31
| | | | Signed-off-by: Justin Ruggles <justin.ruggles@gmail.com>
* mpegaudiodec: fix seeking.Ronald S. Bultje2011-12-31
| | | | | | | | | The safe bitstream reader does not allow using skip_bits_long() to seek to a point before the start of the buffer, which was needed by the mp3 decoder. This change instead calculates the start point of the first valid granule and skips to that position. Signed-off-by: Justin Ruggles <justin.ruggles@gmail.com>
* mpegaudiodec: fix compilation when testing the unchecked bitstream readerJustin Ruggles2011-12-31
|
* threads: add sysconf based number of CPUs detectionJanne Grunau2011-12-31
| | | | Can act as fallback and should work on a couple of Unix systems.
* threads: always include necessary headers for number of CPUs detectionJanne Grunau2011-12-31
| | | | | | Since the conditions for the actual usage are more specific a less preferred method can be used. This would cause compilation errors because necessary headers are not included.
* threads: default to automatic thread count detectionJanne Grunau2011-12-31
|
* Changelog: restore version <next> headerJanne Grunau2011-12-31
| | | | | Indeo 4 decoder and SMJPEG demuxer are not included in 0.8_beta1. Move them to version <next>.
* cook: K&R formatting cosmeticsShitiz Garg2011-12-31
| | | | Signed-off-by: Diego Biurrun <diego@biurrun.de>
* fate: whitespace cosmeticsDiego Biurrun2011-12-30
|
* fate: split off video codec FATE tests into their own fileDiego Biurrun2011-12-30
|
* fate: split off audio codec FATE tests into their own fileDiego Biurrun2011-12-30
|
* fate: split off Electronic Arts codec FATE tests into their own fileDiego Biurrun2011-12-30
|
* fate: split off QuickTime codec FATE tests into their own fileDiego Biurrun2011-12-30
|
* fate: split off voice codec FATE tests into their own fileDiego Biurrun2011-12-30
|
* fate: split off demuxer FATE tests into their own fileDiego Biurrun2011-12-30
|
* cosmetics: Drop unnecessary parentheses around return values.Diego Biurrun2011-12-30
|
* fate: drop pointless _audio and _video suffixes from xan testsDiego Biurrun2011-12-30
|
* qt-faststart: K&R reformatting; fix comment typosDiego Biurrun2011-12-30
|