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
AgeCommit message (Collapse)Author
2014-06-18Remove avserver.Anton Khirnov
It has not been properly maintained for years and there is little hope of that changing in the future. It appears simpler to write a new replacement from scratch than unbreaking it.
2014-04-09fate: correctly set sample rate for mp2 testsVittorio Giovara
2014-02-10FATE: force FLAC in the lavf ogg testAnton Khirnov
Since b0c2c09, vorbis would be used if libvorbis is compiled in.
2013-05-03lavf-regression: use -frames instead of -t for image testsAnton Khirnov
-t 0.5 is 12.5 frames at 25 fps, which may round to either 12 or 13 on different platforms.
2012-05-29avconv: merge configuration code for complex and simple filtersAnton Khirnov
Some tests change because -s now inserts the scaler to the end instead of beginning of the filtergraph.
2012-05-16fate: Work around non-standard wc implementations at more placesMartin Storsjö
This applies the same fix as in ed7409fe9d for lavf-regressions.sh. Signed-off-by: Martin Storsjö <martin@martin.st>
2012-04-24FATE: avoid channel mixing in lavf-dv_fmtJustin Ruggles
This partially reverts acb1730218f1c614dc8ca3ba45d9de1e05059515 which would only have needed to change the checksums if channel mixing had been properly avoided. This changes the output file size reference and the seek test reference back to the previous values.
2012-04-20FATE: allow lavf tests to alter input parametersJustin Ruggles
Change some lavf tests to avoid resampling and channel mixing.
2012-03-14fate: add pam image regression testPaul B Mahol
Signed-off-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: Janne Grunau <janne-libav@jannau.net>
2012-03-04fate: Add sunrast regression testDerek Buitenhuis
Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com> Signed-off-by: Justin Ruggles <justin.ruggles@gmail.com>
2012-02-21Add regression test for "sox" format muxer/demuxer.Reimar Döffinger
Signed-off-by: Reimar Döffinger <Reimar.Doeffinger@gmx.de> Signed-off-by: Justin Ruggles <justin.ruggles@gmail.com>
2012-02-21Add dpx encoding regression test.Carl Eugen Hoyos
Signed-off-by: Justin Ruggles <justin.ruggles@gmail.com>
2012-01-27codec-regression: use private options instead of deprecated codec flags.Anton Khirnov
2012-01-26fate: add XWD image regression testPaul B Mahol
Signed-off-by: Diego Biurrun <diego@biurrun.de>
2011-11-18fate-lavf-ts: use -mpegts_transport_stream_id option.Anton Khirnov
Serves as a test of muxer private options.
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-04avconv: move start_time, recording_time and input_ts_offset to options contextAnton Khirnov
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-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-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-07-17fate: separate lavf-mxf_d10 test from lavf-mxfMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-07-10lavc: remove a half-working attempt at different defaults for audio/video ↵Anton Khirnov
codecs. It should be replaced with proper per-codec defaults.
2011-06-21fate: remove output redirections from old regtest scriptsMans Rullgard
All tests are run through the fate-run.sh script which already sets up redirections. Using the outputs set there simplifies things somewhat. Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-06-15ffmpeg: don't abuse a global for passing samplerate from input to outputAnton Khirnov
It's broken with multiple files or audio streams. This removes the default samplerate of 44100 for raw input, hence all the FATE changes.
2011-05-18fate: remove do_ffmpeg_nocheck functionMans Rullgard
This function is essentially an alias for run_ffmpeg and is only used in one place. This patch removes the function and replaces the call with the equivalent (simpler) run_ffmpeg call. Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-05-18fate: do not collect -benchmark outputMans Rullgard
The old regtest scripts pass -benchmark and collect the utime values. As these values are never used, this machinery can be removed. Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-05-09regtest: separate flags for encoding and decodingMans Rullgard
This separates encoding and decoding flags, and passes them together with the related file argument instead of all at the start of the command line. Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-05-08regtest: remove redundant flags in jpg testMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-05-08regtest: use run_ffmpeg in do_image_formatsMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-01-19Add regression test for stereo s16le in voc.Justin Ruggles
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-01-04Change the AC-3 encoder to use floating-point.Justin Ruggles
Fixed-point AC-3 encoder renamed to ac3_fixed. Regression test acodec-ac3 renamed to acodec-ac3_fixed. Regression test lavf-rm changed to use ac3_fixed encoder. Originally committed as revision 26209 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-08-31Test decoding in fate-lavf-gifVitor Sessak
Originally committed as revision 25012 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-08-31PNG image regression testingVitor Sessak
Originally committed as revision 25011 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-07-22regtest: simplify cleanup after each testMåns Rullgård
Originally committed as revision 24396 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-07-20Lego Mindstorms RSO muxer and demuxer.Rafaël Carré
Patch by Rafaël Carré, rafael d carre a gmail Originally committed as revision 24355 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-05-13Replace "-vfilters" by "-vf" in regtests. Should fix regtest breakage.Vitor Sessak
Originally committed as revision 23109 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-05-07Enable libavfilter by default and fix pading for mxf-d10Michael Niedermayer
Originally committed as revision 23048 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-07regtest: place image sequence outputs in separate directoriesMåns Rullgård
Originally committed as revision 22282 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-03Place regtest-pixfmt output files in separate dirMåns Rullgård
This test generates many output files, and keeping them separate is convenient. Originally committed as revision 22157 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-01-16regtest: suppress console output from testsMåns Rullgård
This disables all console output from the *-regression.sh scripts by default. If the V environment variable is set to 1, ffmpeg commands are printed before being run. If V is greater than 1, ffmpeg output goes to the console, otherwise stderr is redirected to a file. Originally committed as revision 21253 to svn://svn.ffmpeg.org/ffmpeg/trunk
2009-10-24Split codec-regression.sh, and create the lavf-regression.sh script.Stefano Sabatini
Originally committed as revision 20365 to svn://svn.ffmpeg.org/ffmpeg/trunk