Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
AgeCommit message (Collapse)Author
2011-09-28fate: use 'run' helper for seek-testMans Rullgard
This is simpler, and the actual seek-test command is printed with V=1. Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-09-28fate: remove seek-mpeg2reuse testMans Rullgard
The input file for this test is no longer generated. Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-09-27avconv: use different variables for decoded and filtered frame.Anton Khirnov
Makes the code less obfuscated and fixes encoding one video stream to several outputs. Also use avcodec_alloc_frame() instead of allocating AVFrame on stack. Breaks me_threshold in avconv, as motion vectors aren't passed through lavfi. They could be copied manually, but I don't think this misfeature is useful enough to justify ugly hacks.
2011-09-27fate: allow testing with libavfilter disabledMans Rullgard
This declares dependencies to skip tests using libavfilter when it is disabled. Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-09-24adpcmenc: fix QT IMA ADPCM encoderBaptiste Coudurier
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2011-09-24adpcmdec: Fix QT IMA ADPCM decoderBaptiste Coudurier
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2011-09-23Fix unnecessary shift with 9/10bit vertical scalingKieran Kunhya
Signed-off-by: Diego Biurrun <diego@biurrun.de>
2011-09-22fate.sh: Ignore errors from rm command during cleanup.Diego Biurrun
The install directory being deleted might not be present if the build failed. This can lead to annoying error output if the FATE client is run as a cronjob.
2011-09-22fate.sh: Run git-pull in quiet mode to avoid console spam.Diego Biurrun
Since fate.sh can be run from cron, silent commands are preferrable.
2011-09-22eval: test isnan(sqrt(-1)) instead of just sqrt(-1)Anton Khirnov
sqrt(-1) returns "some NaN", it's not specified which exactly.
2011-09-19eval: implement not() expressionStefano Sabatini
2011-09-19eval: add sqrt function for computing the square rootStefano Sabatini
2011-09-17movenc: create an alternate group for each media typeAnton Khirnov
Partially fixes bug 44.
2011-09-17rawdec: g722 is always 1 channel/16kHzAnton Khirnov
2011-09-14smacker: fix a few off by 1 errorsMichael Niedermayer
stereo & 16bit is untested due to lack of samples Signed-off-by: Martin Storsjö <martin@martin.st>
2011-09-11avconv: rewrite -qscale and -aq handling.Anton Khirnov
Merge video_qscale (set by -qscale) and audio_qscale (set by -aq) into one 'qscale' field in the options context. Add a shortcut -q for -qscale and make -aq an alias for -q:a.
2011-09-07v210dec: switch to PIX_FMT_422P10Baptiste Coudurier
Signed-off-by: Anton Khirnov <anton@khirnov.net>
2011-09-07libx264: add 'direct-pred' private optionAnton Khirnov
Deprecate AVCodecContext.directpred
2011-09-07libx264: add 'partitions' private optionAnton Khirnov
Deprecate AVCodecContext.partitions.
2011-09-05ac3enc: Add channel coupling support for the fixed-point AC-3 encoder.Justin Ruggles
Update FATE references accordingly.
2011-09-05fate: use +frame+slice named constants instead of '3'Anton Khirnov
2011-09-05avconv: move max_frames to options context.Anton Khirnov
Add a -frames option that uses generic stream specifiers, change -[vad]frames into aliases to it.
2011-09-04avconv: move limit_filesize to options contextAnton Khirnov
2011-09-04avconv: move start_time, recording_time and input_ts_offset to options contextAnton Khirnov
2011-09-02codec-regression: force vsync 0 on the me_threshold test to make sure frames ↵Alex Converse
match.
2011-08-26fifo: add FIFO API test program, and fate testStefano Sabatini
Signed-off-by: Anton Khirnov <anton@khirnov.net>
2011-08-22movenc: use libx264 by default when possible for mov, mp4 and pspAnton Khirnov
2011-08-22avienc: saner default audio codec.Anton Khirnov
libmp3lame if available, ac3 otherwise.
2011-08-22matroskaenc: saner default codecs.Anton Khirnov
libvorbis/libx264 for video if available, otherwise ac3/mpeg4.
2011-08-18avconv: remove -intra option.Anton Khirnov
It's equivalent to -g 0.
2011-08-17avconv: rescue poor abused recording_time global.Anton Khirnov
Keep a per-OutputFile instance of it, thus making -t work with multiple output files.
2011-08-17rmdec: parse FPS in RealMedia properlyKostya Shishkov
Signed-off-by: Anton Khirnov <anton@khirnov.net>
2011-08-17Use parsers for RealVideo 3/4 to determine correct PTSKostya Shishkov
Signed-off-by: Anton Khirnov <anton@khirnov.net>
2011-08-17rmdec: correct DTS calculation in RealMedia container.Kostya Shishkov
First, container stores only DTS and not PTS as it was believed. Second, multiple frames in a packet store timestamp instead of position after the frame length. Signed-off-by: Anton Khirnov <anton@khirnov.net>
2011-08-16Revert "avconv: use stream copy by default when possible."Anton Khirnov
This reverts commit 4f4f33844a7369e5579912cc02f3c5376b1e6872. This commit has some ugly corner cases and needs to be discussed further.
2011-08-16avconv: use stream copy by default when possible.Anton Khirnov
2011-08-16lavc: add audio flag to the 'b' option, deprecate 'ab'.Anton Khirnov
Its only reason for its existence was ffmpeg's inability to properly assign AVOptions to streams. Now this is not a problem anymore, so 'ab' should go.
2011-08-16avconv: rename sameq to same_quantAnton Khirnov
It's often mistakenly used as 'same quality', emphasize that it's not true in the manual.
2011-08-12swscale: use 15-bit intermediates for 9/10-bit scaling.Ronald S. Bultje
2011-08-12Make a copy of ffmpeg under a new name -- avconv.Anton Khirnov
It will be further developed with a few incompatible changes. ffmpeg.c will stay as is for some time, so any scripts using it won't be broken.
2011-08-12Add weighted motion compensation for RV40 B-framesKostya Shishkov
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
2011-08-02Revert "swscale: use 15-bit intermediates for 9/10-bit scaling."Ronald S. Bultje
This reverts commit ac0fb5934893be554a44d2a1eb7a3bc7bf39da4a. It causes valgrind errors which I'll want to investigate before resubmitting this.
2011-08-02swscale: use 15-bit intermediates for 9/10-bit scaling.Ronald S. Bultje
2011-08-02Correct chroma vector calculation for RealVideo 3.Kostya Shishkov
Old version divided it wrong, which resulted in chroma drift (visible on FATE sample too as dirty trails left by clouds). Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
2011-08-01Remove the ffserver test.Anton Khirnov
It doesn't work and is therefore useless.
2011-07-21dnxhd: add regression test for 10-bitMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-07-21swscale: mark YUV422P10(LE,BE) as supported for outputJoseph Artsimovich
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-07-18fate: make vsynth tests depend on only the relevant vrefMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-07-17fate: separate lavf-mxf_d10 test from lavf-mxfMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-07-13mpegtsenc: set Random Access indicator on keyframe start packetsJindrich Makovicka
Signed-off-by: Jindrich Makovicka <jindrich.makovicka@nangu.tv> Signed-off-by: Anton Khirnov <anton@khirnov.net>