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
2015-09-07Merge commit '87e5d8d78cf08b54b4a9e7cbaeff89f8c1d91b78'Hendrik Leppkes
* commit '87e5d8d78cf08b54b4a9e7cbaeff89f8c1d91b78': ismindex: Use the correct abs() version Merged-by: Hendrik Leppkes <h.leppkes@gmail.com>
2015-08-31ismindex: Use the correct abs() versionVittorio Giovara
2015-08-20graph2dot: use avfilter_pad_get_name accessor functionAndreas Cadhalpun
Reviewed-by: Michael Niedermayer <michael@niedermayer.cc> Signed-off-by: Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>
2015-08-13crypto_bench: add support for ripemd-128James Almer
Reviewed-by: Nicolas George <george@nsup.org> Signed-off-by: James Almer <jamrial@gmail.com>
2015-08-13crypto_bench: add support for xteaJames Almer
Reviewed-by: Nicolas George <george@nsup.org> Signed-off-by: James Almer <jamrial@gmail.com>
2015-08-13crypto_bench: add support for rc4James Almer
Reviewed-by: Nicolas George <george@nsup.org> Signed-off-by: James Almer <jamrial@gmail.com>
2015-08-13crypto_bench: add support for blowfishJames Almer
Reviewed-by: Nicolas George <george@nsup.org> Signed-off-by: James Almer <jamrial@gmail.com>
2015-06-12Merge commit '30dfc1dad4285e7362ce3f596d7c5d5d9b7fb33d'Michael Niedermayer
* commit '30dfc1dad4285e7362ce3f596d7c5d5d9b7fb33d': cws2fws: Close file handles on error Merged-by: Michael Niedermayer <michaelni@gmx.at>
2015-06-12cws2fws: Close file handles on errorVittorio Giovara
Reported-By: infer
2015-05-12tools/graph2dot: use larger data types than int for array/string sizesMichael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2015-05-06tools/cws2fws: Use a similar implementation in dbgprintf() as in ff_dlog()Michael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2015-04-01tools/sidxindex: Use av_*malloc_array()Michael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2015-03-19Merge commit '30a041887f89cd97c372ad6a516da6e012f2c88b'Michael Niedermayer
* commit '30a041887f89cd97c372ad6a516da6e012f2c88b': ismindex: Calculate the pts duration of trun atoms, not the dts duration Merged-by: Michael Niedermayer <michaelni@gmx.at>
2015-03-19ismindex: Calculate the pts duration of trun atoms, not the dts durationMartin Storsjö
Since the duration is compared to the tfra durations/intervals which are expressed in pts, calculate that here as well. Signed-off-by: Martin Storsjö <martin@martin.st>
2015-02-23tools/graph2dot: Check for av_malloc() failureMichael Niedermayer
Fixes CID1271047 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2015-02-22tools/trasher: Check fseek returnsMichael Niedermayer
Fixes CID733726 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2015-02-22Add coverity model fileMichael Niedermayer
The comments/header of the file are taken from qemu, they provide some basic documentation The code from the examples Ive no means to test this except uploading to coverity for FFmpeg, so each commit should stay simple, making it easy to revert. Also please help making this a useful and effective file by contributing changes/code to it and reviewing contributions. I am happy to upload changes but i cannot really maintain this (alone) as i cannot test changes. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2015-02-21tools: added twofish supportSupraja Meedinti
Signed-off-by: Supraja Meedinti <supraja0493@gmail.com> Reviewed-by: Nicolas George <george@nsup.org> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2015-01-26tools/crypto_bench: add Camellia supportJames Almer
Reviewed-by: Nicolas George <george@nsup.org> Signed-off-by: James Almer <jamrial@gmail.com>
2015-01-09tools/uncoded_frame: Use avio_closep() to avoid leaving stale pointers in memoryMichael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2015-01-06tools/ismindex.c: Use av_realloc_array()Michael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2015-01-06tools/ismindex: Keep count fields consistent with arrays in case of errorsMichael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2015-01-03Merge commit '470c9db11ff2c3249e995e7ba68e87bb81bf778c'Michael Niedermayer
* commit '470c9db11ff2c3249e995e7ba68e87bb81bf778c': sidxindex: Remove parsing that isn't necessary any longer Merged-by: Michael Niedermayer <michaelni@gmx.at>
2015-01-03Merge commit '5cf6bda6e2eae496e8eb2bb06c96852d59a58b8a'Michael Niedermayer
* commit '5cf6bda6e2eae496e8eb2bb06c96852d59a58b8a': sidxindex: Don't adjust the Period start time depending on the track start time Merged-by: Michael Niedermayer <michaelni@gmx.at>
2015-01-03sidxindex: Remove parsing that isn't necessary any longerMartin Storsjö
When we don't adjust the Period start time, we don't need to parse the earliest_presentation_time from the sidx boxes either. Signed-off-by: Martin Storsjö <martin@martin.st>
2015-01-03sidxindex: Don't adjust the Period start time depending on the track start timeMartin Storsjö
This was only necessary to get playback to start with dash.js 1.2.0, it has been fixed in the git version. The previous behaviour was incorrect - the Period's start time is irrespective of the actual first timestamp of the contents within the period. The Period start time only says when, within the global timeline, this particular piece should start to be played back. Signed-off-by: Martin Storsjö <martin@martin.st>
2014-12-23tools/probetest: support testing a single specified input formatMichael Niedermayer
This reduces the time the test takes significantly when only one formats needs to be tested Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2014-11-24Merge commit '6f26f14f134e753d6168591f30815b1c08c1498b'Michael Niedermayer
* commit '6f26f14f134e753d6168591f30815b1c08c1498b': sidxindex: Write mimeType=audio/mp4 for audio-only representations Merged-by: Michael Niedermayer <michaelni@gmx.at>
2014-11-24sidxindex: Write mimeType=audio/mp4 for audio-only representationsMartin Storsjö
This fixes playback with dash.js, when the input is one separate mp4 file per track. Signed-off-by: Martin Storsjö <martin@martin.st>
2014-11-18Merge commit 'c302d034ba2690a935df8bf7e4f5d44ed86e8d5c'Michael Niedermayer
* commit 'c302d034ba2690a935df8bf7e4f5d44ed86e8d5c': tools: Add a sidxindex tool Conflicts: libavformat/Makefile Merged-by: Michael Niedermayer <michaelni@gmx.at>
2014-11-17tools: Add a sidxindex toolMartin Storsjö
This tool can write an MPD file for fragmented MP4 files with a sidx index at the start of the file. Signed-off-by: Martin Storsjö <martin@martin.st>
2014-10-25tools/ffhash: read errno before calling functions which might change itMichael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2014-10-24tools: Use av_gettime_relativeOlivier 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: Martin Storsjö <martin@martin.st>
2014-10-22tools/crypto_bench: add CAST5 supportJames Almer
Reviewed-by: Michael Niedermayer <michaelni@gmx.at> Signed-off-by: James Almer <jamrial@gmail.com>
2014-10-16Merge commit '979932378ae3fbf452e312eb759cc7ce175f78de'Michael Niedermayer
* commit '979932378ae3fbf452e312eb759cc7ce175f78de': ismindex: use tfhd default duration if no sample duration Merged-by: Michael Niedermayer <michaelni@gmx.at>
2014-10-16ismindex: use tfhd default duration if no sample durationMika Raento
Signed-off-by: Martin Storsjö <martin@martin.st>
2014-10-09Merge commit '2bc220958c7570020d87ee353db65460b518998a'Michael Niedermayer
* commit '2bc220958c7570020d87ee353db65460b518998a': ismindex: handle discontinuous streams better Conflicts: tools/ismindex.c See: d3834f290138cb8c48fd404081ac5b9a2ca14564 Merged-by: Michael Niedermayer <michaelni@gmx.at>
2014-10-09ismindex: handle discontinuous streams betterMika Raento
Reads the fragment duration from the trun sample data, rather than assuming that there are no gaps. Creates much better playlists for our inputs. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2014-10-09ismindex: handle discontinuous streams betterMika Raento
Read the fragment duration from the trun sample data, rather than assuming that there are no gaps. Signed-off-by: Martin Storsjö <martin@martin.st>
2014-09-16tools/crypto_bench: fix build when AV_READ_TIME is unavailableMichael Niedermayer
Found-by: Andreas Cadhalpun <andreas.cadhalpun@googlemail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2014-09-16Merge commit '00431bf874e1044b01e09a2266ef85d4ff8d44cc'Michael Niedermayer
* commit '00431bf874e1044b01e09a2266ef85d4ff8d44cc': ismindex: handle time discontinuities and nonzero start time Merged-by: Michael Niedermayer <michaelni@gmx.at>
2014-09-15ismindex: handle time discontinuities and nonzero start timeMika Raento
The input file may not have consistent start times, stream durations and chunk durations. This patch at least removes negative durations that make chromecast unhappy, and correctly sets starting time on chunks so that the split (or .ismf) outputs match the manifest. Signed-off-by: Martin Storsjö <martin@martin.st>
2014-09-08Merge commit 'fcf597625c7a991ca389f3a9b8ff4f5e383301c0'Michael Niedermayer
* commit 'fcf597625c7a991ca389f3a9b8ff4f5e383301c0': ismindex: Avoid writing ismf files if no base name has been specified Merged-by: Michael Niedermayer <michaelni@gmx.at>
2014-09-08ismindex: Avoid writing ismf files if no base name has been specifiedMartin Storsjö
Previously, this could create files named "(null).ismf", if the -ismf parameter is specified (before an input file name), but without specifying any base name. Signed-off-by: Martin Storsjö <martin@martin.st>
2014-09-05Merge commit 'b21e989a3c076d94cfdde0303724db841dd60cad'Michael Niedermayer
* commit 'b21e989a3c076d94cfdde0303724db841dd60cad': ismindex: produce .ismf file Conflicts: tools/ismindex.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
2014-09-05ismindex: produce .ismf fileMika Raento
This is a non-standard file that maps the MSS segment names to offsets in the ISMV file. This can be used to build a custom MSS streaming server without splitting the ISMV into separate files. Signed-off-by: Martin Storsjö <martin@martin.st>
2014-09-03Merge commit 'c487972ed0e1eaebdbe4a13cdd191e119be0b19c'Michael Niedermayer
* commit 'c487972ed0e1eaebdbe4a13cdd191e119be0b19c': ismindex: recover from completely empty streams Merged-by: Michael Niedermayer <michaelni@gmx.at>
2014-09-03ismindex: recover from completely empty streamsMika Raento
This creates best-effort results from input that is missing stream contents, there are warnings printed when this happens. Signed-off-by: Martin Storsjö <martin@martin.st>
2014-09-02Merge commit 'e48d1ea541be4592ebac89875557407ca958b7a9'Michael Niedermayer
* commit 'e48d1ea541be4592ebac89875557407ca958b7a9': ismindex: improve diagnostics Conflicts: tools/ismindex.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
2014-09-02ismindex: improve diagnosticsMika Raento
This improves error messages for completely and somewhat broken inputs. Signed-off-by: Martin Storsjö <martin@martin.st>