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
2013-09-24ffhash: Change size to an intAlex Smith
This fixes compilation with MSVC and ICL, and makes ffhash consistent with how the rest of the codebase uses read(). Reviewed-by: Derek Buitenhuis <derek.buitenhuis@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-09-21tools: Fix apparent merge failureAlex Smith
2013-09-04tools/crypto_bench: fix 2 typos.Clément Bœsch
2013-09-04tools: add benchmark for crypto functions.Nicolas George
The benchmark tests the speed of the following algorithms: MD5, SHA-1, SHA-256, SHA-512, RIPEMD-160, AES-128. It can optionally be built to perform the same benchmark on other crypto libraries, for comparison purposes. The supported libraries are: - crypto: OpenSSL's libcrypto; - gcrypt: GnuTLS's libgcrypt; - tomcrypt: LibTomCrypt To enable them, use this syntax: make VERSUS=crypto+gcrypt+tomcrypt tools/crypto_bench They do not need to have been enabled in configure.
2013-08-30Reinstate proper FFmpeg license for all files.Thilo Borgmann
2013-08-25tools/graph2dot: fix use of deprecated *put_countMichael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-08-06Merge commit 'bea3d6f4363ff1bbbd99c1717f7498b9fdb12cfc'Michael Niedermayer
* commit 'bea3d6f4363ff1bbbd99c1717f7498b9fdb12cfc': ismindex: Replace mkdir ifdeffery by os_support.h #include Merged-by: Michael Niedermayer <michaelni@gmx.at>
2013-08-05ismindex: Replace mkdir ifdeffery by os_support.h #includeDiego Biurrun
os_support.h contains more precise workarounds for non-POSIX mkdir().
2013-07-07Merge commit 'a4baf96abd64cda68e3e4692b182bdf60745a14d'Michael Niedermayer
* commit 'a4baf96abd64cda68e3e4692b182bdf60745a14d': avprobe: rename the prettyprint structures tools: Wording and formatting cosmetics Conflicts: avprobe.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
2013-07-06tools: Wording and formatting cosmeticsDiego Biurrun
2013-06-03tools/qt-faststart: Fix unintended sign extension of current_offsetMichael Niedermayer
Fixes: CID733809 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-06-03tools/qt-faststart: Fix unintended sign extension of atom_sizeMichael Niedermayer
Fixes CID733810 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-06-03tools/ffhash: close file handle on errorMichael Niedermayer
Fixes CID1026768 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-06-03tools/ffeval: Check return value of av_expr_parse_and_eval()Michael Niedermayer
Fixes CID1026745 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-05-23tools/patcheck: fix misdetection with stuff like const_namesMichael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-05-19tools: add zmqshell.py.Clément Bœsch
2013-05-17tools/ffhash: Use O_BINARY when availableJames Almer
This fixes reading files in Windows Signed-off-by: James Almer <jamrial@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-05-16Rename ffadler to ffhash and expand it using the generic hash APIJames Almer
Signed-off-by: James Almer <jamrial@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-05-15replace remaining PIX_FMT_* flags with AV_PIX_FMT_FLAG_*Michael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-05-14tools: add zmqsend tool, useful to test the zmq filtersStefano Sabatini
2013-05-13tools/ffeval: use av_dynarray2_add()Stefano Sabatini
Simplify, increment robustness.
2013-05-09ffadler: fix duplicate \n on errorsMichael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-05-09ffadler: add multifile supportMichael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-05-09tools: Add adler32 checksum toolMichael Niedermayer
This is about 6 times faster than md5sum on linux Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-05-04Merge commit 'a5f8873620ce502d37d0cc3ef93ada2ea8fb8de7'Michael Niedermayer
* commit 'a5f8873620ce502d37d0cc3ef93ada2ea8fb8de7': silly typo fixes Conflicts: doc/protocols.texi libavcodec/aacpsy.c libavformat/utils.c tools/patcheck Merged-by: Michael Niedermayer <michaelni@gmx.at>
2013-05-03silly typo fixesDiego Biurrun
2013-04-21ismindex: check mkdir()s return codeMichael Niedermayer
Fixes CID733724 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-04-21tools/ismindex: dont ignore return code of write_fragments()Michael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-04-12Merge commit '38f0c0781a6e099f11c0acec07f9b8be742190c4'Michael Niedermayer
* commit '38f0c0781a6e099f11c0acec07f9b8be742190c4': lavfi: merge avfiltergraph.h into avfilter.h Conflicts: doc/APIchanges ffmpeg_filter.c libavfilter/avfilter.h libavfilter/avfiltergraph.h libavfilter/version.h tools/graph2dot.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
2013-04-11lavfi: merge avfiltergraph.h into avfilter.hAnton Khirnov
We do not support using filters without AVFilterGraph in practice anyway, so there is no point in pretending we do.
2013-04-10Replace all occurrences of PRI in sscanf() calls with SCNJames Almer
Signed-off-by: James Almer <jamrial@gmail.com>
2013-03-26tools: add audio normalize script example.Clément Bœsch
2013-03-16Merge commit '42c7c61ab25809620b8c8809b3da73e25f5bbaaf'Michael Niedermayer
* commit '42c7c61ab25809620b8c8809b3da73e25f5bbaaf': avfiltergraph: replace AVFilterGraph.filter_count with nb_filters Conflicts: doc/APIchanges libavfilter/avfiltergraph.c libavfilter/avfiltergraph.h libavfilter/graphparser.c libavfilter/version.h Merged-by: Michael Niedermayer <michaelni@gmx.at>
2013-03-14Merge commit 'f099d3d1d5466bd63f4ab36270d169ff9ea613b8'Michael Niedermayer
* commit 'f099d3d1d5466bd63f4ab36270d169ff9ea613b8': Add av_log_{ask_for_sample|missing_feature} replacements to libavutil ismindex: Check the return value of allocations Merged-by: Michael Niedermayer <michaelni@gmx.at>
2013-03-14Merge commit '7c147900b86c0f1cf030b7b844c670649c80c191'Michael Niedermayer
* commit '7c147900b86c0f1cf030b7b844c670649c80c191': ismindex: Factorize code for printing chunk duration lists Merged-by: Michael Niedermayer <michaelni@gmx.at>
2013-03-14Merge commit 'f05e9beb4ab5fb8b9d5ba81405e9fca901832591'Michael Niedermayer
* commit 'f05e9beb4ab5fb8b9d5ba81405e9fca901832591': ismindex: Rename structs and fields from "file" to "track" avpacket: copy side data type and size in av_dup_packet Conflicts: libavcodec/avpacket.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
2013-03-13ismindex: Check the return value of allocationsMartin Storsjö
Signed-off-by: Martin Storsjö <martin@martin.st>
2013-03-13ismindex: Factorize code for printing chunk duration listsMartin Storsjö
Signed-off-by: Martin Storsjö <martin@martin.st>
2013-03-13ismindex: Rename structs and fields from "file" to "track"Martin Storsjö
The tool nowadays supports more than one track per file, this makes reading the code slightly less confusing. Signed-off-by: Martin Storsjö <martin@martin.st>
2013-03-07lavu: add escape APIStefano Sabatini
The escape API will be useful to perform escaping programmatically, which is required when crafting argument strings, and will be used for context printing as well. This is based on the ffescape tool code, with a few extensions and fixes.
2013-02-27Include fix for building ismindex under MinGWFrederic Jean
Include cmdutils.h so we can build under windows. Based on fix for https://ffmpeg.org/trac/ffmpeg/ticket/256
2013-02-24tools: add seek_print.Nicolas George
Useful for testing seek implementations.
2013-01-23Merge commit '88bd7fdc821aaa0cbcf44cf075c62aaa42121e3f'Michael Niedermayer
* commit '88bd7fdc821aaa0cbcf44cf075c62aaa42121e3f': Drop DCTELEM typedef Conflicts: libavcodec/alpha/dsputil_alpha.h libavcodec/alpha/motion_est_alpha.c libavcodec/arm/dsputil_init_armv6.c libavcodec/bfin/dsputil_bfin.h libavcodec/bfin/pixels_bfin.S libavcodec/cavs.c libavcodec/cavsdec.c libavcodec/dct-test.c libavcodec/dnxhdenc.c libavcodec/dsputil.c libavcodec/dsputil.h libavcodec/dsputil_template.c libavcodec/eamad.c libavcodec/h264_cavlc.c libavcodec/h264idct_template.c libavcodec/mpeg12.c libavcodec/mpegvideo.c libavcodec/mpegvideo.h libavcodec/mpegvideo_enc.c libavcodec/ppc/dsputil_altivec.c libavcodec/proresdsp.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
2013-01-23Drop DCTELEM typedefDiego Biurrun
It does not help as an abstraction and adds dsputil dependencies. Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
2013-01-16tools: add plotframes scriptStefano Sabatini
The script is ported from ffprobe/SourceForge and updated to the current ffprobe version.
2013-01-04Fix "knwon" typo and add a check in tools/patcheckPaul B Mahol
Signed-off-by: Paul B Mahol <onemda@gmail.com>
2012-12-21Merge commit '511cf612ac979f536fd65e14603a87ca5ad435f3'Michael Niedermayer
* commit '511cf612ac979f536fd65e14603a87ca5ad435f3': miscellaneous typo fixes Conflicts: libavcodec/4xm.c libavcodec/lagarith.c libavcodec/parser.c libavcodec/ratecontrol.c libavcodec/shorten.c libavcodec/vda_h264.c libavformat/dvenc.c libavformat/wtv.c tools/patcheck Merged-by: Michael Niedermayer <michaelni@gmx.at>
2012-12-21miscellaneous typo fixesDiego Biurrun
2012-12-18Fix "bistream" typo and add a check in tools/patcheck.Clément Bœsch
2012-12-13qt-faststart: Check offset_countMichael Niedermayer
Fixes CID733836 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>