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-05-17tools: Use av_gettime_relative()Olivier Langlois
Whenever av_gettime() is used to measure relative period of time, av_gettime_relative() is prefered as it guarantee monotonic time on supported platforms. Signed-off-by: Olivier Langlois <olivier@trillion01.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2014-01-17Merge commit '87acd33c092ab9e7d73686627e9105d99c1e4928'Michael Niedermayer
* commit '87acd33c092ab9e7d73686627e9105d99c1e4928': aviocat: Add support for specifying the input duration Merged-by: Michael Niedermayer <michaelni@gmx.at>
2014-01-17Merge commit '03f2de5856ec8571fcf5f4cf6dccc713294af545'Michael Niedermayer
* commit '03f2de5856ec8571fcf5f4cf6dccc713294af545': aviocat: Check the argv array length before reading element i+1 Merged-by: Michael Niedermayer <michaelni@gmx.at>
2014-01-17aviocat: Add support for specifying the input durationMartin Storsjö
This avoids the caller having to calculate the byte rate if wanting to push a file in a rate resembling realtime. Signed-off-by: Martin Storsjö <martin@martin.st>
2014-01-17aviocat: Check the argv array length before reading element i+1Martin Storsjö
Signed-off-by: Martin Storsjö <martin@martin.st>
2013-08-30Reinstate proper FFmpeg license for all files.Thilo Borgmann
2012-06-22Replace usleep() calls with av_usleep()Mans Rullgard
This reduces the dependency on unistd.h which is not available on all systems. Signed-off-by: Mans Rullgard <mans@mansr.com>
2012-01-25tools: K&R reformatting cosmeticsDiego Biurrun
2012-01-21aviocat: Remove useless includesMartin Storsjö
Also include stdlib.h explicitly - currently it is used implicitly via avformat.h. Signed-off-by: Martin Storsjö <martin@martin.st>
2012-01-21aviocat: Flush the output before closingMartin Storsjö
Without this, the end of the file might not be transmitted/written. Signed-off-by: Martin Storsjö <martin@martin.st>
2012-01-21Add a tool that uses avio to read and write, doing a plain copy of dataMartin Storsjö
It also optionally can throttle its operation to a particular speed, to simulate realtime writing. Signed-off-by: Martin Storsjö <martin@martin.st>