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/tools
AgeCommit message (Collapse)Author
2012-12-21miscellaneous typo fixesDiego Biurrun
2012-10-12tools: do not use av_pix_fmt_descriptors directly.Anton Khirnov
2012-10-01avformat: Remove non-compiling and/or silly commented-out printf/av_log ↵Diego Biurrun
statements
2012-09-14trasher: Include all the necessary headersMartin Storsjö
The missing headers are required for errno and for strerror. This fixes building of this tool on mingw32ce. Signed-off-by: Martin Storsjö <martin@martin.st>
2012-08-31pktdumper: Use a custom define instead of PATH_MAX for buffersMartin Storsjö
PATH_MAX is not necessarily available on all systems, e.g. it's normally not available on MSVC, and is not guaranteed to defined on a POSIX system either. Signed-off-by: Martin Storsjö <martin@martin.st>
2012-08-31pktdumper: Use av_strlcpy instead of strncpyMartin Storsjö
This takes care of null-terminating the buffer if it is too small, which wasn't handled properly before. Signed-off-by: Martin Storsjö <martin@martin.st>
2012-08-31pktdumper: Use sizeof(variable) instead of the direct buffer lengthMartin Storsjö
Also change the snprintf size to use the full buffer, since snprintf always null-terminates the buffer. Signed-off-by: Martin Storsjö <martin@martin.st>
2012-08-29graph2dot: Use the fallback getopt implementation if neededMartin Storsjö
Signed-off-by: Martin Storsjö <martin@martin.st>
2012-08-29tools: Include io.h for open/read/write/close if unistd.h doesn't existMartin Storsjö
Signed-off-by: Martin Storsjö <martin@martin.st>
2012-08-29qt-faststart: Use other seek/tell functions on MSVC than on mingwMartin Storsjö
Signed-off-by: Martin Storsjö <martin@martin.st>
2012-08-29ismindex: Include direct.h for _mkdir on windowsMartin Storsjö
The Windows SDK in MSVC doesn't have mkdir, only _mkdir, and MSDN says one should include direct.h to use it. Signed-off-by: Martin Storsjö <martin@martin.st>
2012-08-15Don't include common.h from avutil.hMartin Storsjö
Signed-off-by: Martin Storsjö <martin@martin.st>
2012-08-07Replace all CODEC_ID_* with AV_CODEC_ID_*Anton Khirnov
2012-07-04lavfi: reclassify showfiltfmts as a TESTPROGMans Rullgard
This tool uses lavfi internal symbols not accessible in shared libraries. TESTPROGS are linked statically to allow them use of library internals not normally exported. Signed-off-by: Mans Rullgard <mans@mansr.com>
2012-07-04graph2dot: fix printf format specifierDiego Biurrun
tools/graph2dot.c:85: warning: format ‘%lld’ expects type ‘long long int’, but argument 4 has type ‘int’
2012-07-03ismindex: Verify that all bitrate variants matchMartin Storsjö
In Smooth Streaming, the fragments are addressed by time, and the manifest only stores one list of time offests for all streams, so all streams need to have identical fragment offsets. Warn if this isn't the case, so that the user can fix the files instead of getting failures at runtime when the fragments can't be found. Signed-off-by: Martin Storsjö <martin@martin.st>
2012-07-03ismindex: Properly report errors reading the MFRA atomMartin Storsjö
Signed-off-by: Martin Storsjö <martin@martin.st>
2012-07-03misc typo and wording fixesDiego Biurrun
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-05-22lavfi: remove avfilter_default_* from public API on next bump.Anton Khirnov
Those functions are only useful inside filters. It is better to not support user filters until the API is more stable.
2012-03-10Fix a bunch of common typos.Diego Biurrun
2012-01-26ismindex: Fix build on mingwMartin Storsjö
Signed-off-by: Martin Storsjö <martin@martin.st>
2012-01-25tools: Remove some unnecessary #undefs.Diego Biurrun
2012-01-25tools: K&R reformatting cosmeticsDiego Biurrun
2012-01-25pktdumper: Use usleep instead of sleepMartin Storsjö
MinGW doesn't have sleep, only _sleep (which is deprecated), Sleep (which is defined in winbase.h and not in the standard C headers) and usleep. Signed-off-by: Martin Storsjö <martin@martin.st>
2012-01-25Add a tool for creating smooth streaming manifestsMartin Storsjö
It can also optionally split the file into individual fragments, which allows it to be served from any web server without any server side support. Signed-off-by: Martin Storsjö <martin@martin.st>
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>
2012-01-11Fix a bunch of platform name and other typos.Diego Biurrun
2012-01-02Fix a bunch of typos.Diego Biurrun
2011-12-31qt-faststart: K&R reformatting; fix comment typosDiego Biurrun
2011-12-29qt-faststart: Fix up indentationMartin Storsjö
This restores indentation after 65b875d8fcc. Signed-off-by: Martin Storsjö <martin@martin.st>
2011-12-12Replace all uses of av_close_input_file() with avformat_close_input().Anton Khirnov
2011-12-11Fix a bunch of common typos.Diego Biurrun
2011-12-08tests/tools/examples: Replace direct exit() calls by return.Diego Biurrun
2011-12-05doc: document preferred Doxygen syntax and make patcheck detect itDiego Biurrun
2011-10-28tools/pktdumper: update to recent avformat apiJanne Grunau
2011-08-26Replace deprecated av_find_stream_info() by avformat_find_stream_info().Diego Biurrun
2011-06-06Remove some unused scripts from tools/.Diego Biurrun
2011-05-16cws2fws: Improve error message wording.Diego Biurrun
2011-05-16tools: Check the return value of write().Diego Biurrun
This fixes several warnings of the type: warning: ignoring return value of ‘write’, declared with attribute warn_unused_result
2011-05-12patcheck: warn about assert usagePeter Ross
Signed-off-by: Michael Niedermayer <michaelni@gmx.at> Signed-off-by: Anton Khirnov <anton@khirnov.net>
2011-04-23Replace `` by $() syntax in shell scripts.Diego Biurrun
$() is easier to nest and POSIX, which we require in other places.
2011-04-23patcheck: Allow overiding grep program(s) through environment variables.Brad
patcheck hardcodes the binary names for grep/egrep. This makes overriding the binary names a pain, e.g. when calling a GNU version of grep on BSD systems. Signed-off-by: Diego Biurrun <diego@biurrun.de>
2011-04-16Replace references to ffmpeg-devel with libav-devel; fix roundup URL.Diego Biurrun
2011-03-19Replace FFmpeg with Libav in licence headersMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-02-17In graph2dot, print more specific audio information for audio links.Stefano Sabatini
Signed-off-by: Janne Grunau <janne-ffmpeg@jannau.net>
2011-01-18consolidate .gitignore patters into a single fileJanne Grunau
Signed-off-by: Janne Grunau <janne-ffmpeg@jannau.net>
2011-01-17convert svn:ignore properties to .gitignore filesJanne Grunau
Signed-off-by: Janne Grunau <janne-ffmpeg@jannau.net>