summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* adxenc: use a loop to encode each channelJustin Ruggles2012-01-03
|
* adxenc: remove unneeded loopsJustin Ruggles2012-01-03
| | | | avctx->frame_size is 32, so that is how many samples we process per call.
* adx: add AVFMT_GENERIC_INDEX to demuxer flags.Justin Ruggles2012-01-03
| | | | fixes seeking
* adxenc: avoid stereo deinterleavingJustin Ruggles2012-01-03
|
* adxenc: remove unnecessary setting of coded_frame->key_frame.Justin Ruggles2012-01-03
| | | | It is already set by avcodec_alloc_frame().
* adxenc: log an error message and return AVERROR(EINVAL) for invalid channelsJustin Ruggles2012-01-03
|
* adxenc: cosmetics: pretty-printingJustin Ruggles2012-01-03
|
* adxenc: change some data typesJustin Ruggles2012-01-03
|
* adxenc: remove unneeded log messageJustin Ruggles2012-01-03
|
* adxenc: remove unneeded commentsJustin Ruggles2012-01-03
|
* APIchanges: mention cleaned up header includesJonathan Nieder2012-01-04
| | | | | | | Fixes bug 188. Signed-off-by: Jonathan Nieder <jrnieder@gmail.com> Signed-off-by: Janne Grunau <janne-libav@jannau.net>
* fate: add dxtory testOana Stratulat2012-01-03
| | | | Signed-off-by: Janne Grunau <janne-libav@jannau.net>
* adx_parser: rewrite.Michael Niedermayer2012-01-03
| | | | | | | | The previous code ended in multiple different infinite loops. See stl_ten_1_big.sfd as example with and without zzuf Signed-off-by: Michael Niedermayer <michaelni@gmx.at> Signed-off-by: Justin Ruggles <justin.ruggles@gmail.com>
* adxdec: Validate channel count to fix a division by zero.Justin Ruggles2012-01-03
|
* adxdec: Do not require extradata.Michael Niedermayer2012-01-03
| | | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at> Signed-off-by: Justin Ruggles <justin.ruggles@gmail.com>
* cmdutils: K&R reformatting cosmeticsAneesh Dogra2012-01-03
| | | | Signed-off-by: Diego Biurrun <diego@biurrun.de>
* alacdec: implement the 2-pass prediction type.Justin Ruggles2012-01-03
| | | | | The reference encoder does not generate any streams using this, but the reference decoder can handle it, so we should as well.
* alacenc: implement the 2-pass prediction type.Justin Ruggles2012-01-03
| | | | This isn't used by the reference encoder, but it is supported by the decoder.
* alacenc: do not generate invalid multi-channel ALAC filesJustin Ruggles2012-01-03
|
* alacdec: fill in missing or guessed info about the extradata format.Justin Ruggles2012-01-03
| | | | | Now that there is official documentation from Apple about this, we don't have to guess anymore.
* utvideo: proper median prediction for interlaced videosKostya Shishkov2012-01-03
|
* lavu: bump lavu minor for av_popcount64Janne Grunau2012-01-03
| | | | Add it to doc/APIchanges and update and correct other entries.
* 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.