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-07-30ffprobe: print some basic information about avframe side dataMichael Niedermayer
Reviewed-by: Stefano Sabatini <stefasab@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2014-06-24ffprobe: add color_range and color_space to stream outputTobias Rapp
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2014-06-10ffprobe: add rc_max_rate to stream outputBilly Shambrook
The value is used by some bitstream to mark the maximum bit rate. See thread: Subject: [FFmpeg-devel] [PATCH] Add rc_max_rate to ffprobe stream output Date: Sun, 1 Jun 2014 17:36:36 +0100 To: ffmpeg-devel@ffmpeg.org http://thread.gmane.org/gmane.comp.video.ffmpeg.devel/178461 Signed-off-by: Stefano Sabatini <stefasab@gmail.com>
2014-05-21ffprobe: Use av_malloc_array()Michael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2014-05-18ffprobe: fix crash happening because of new streams occuringAnshul
Fix trac ticket #3603. Signed-off-by: Stefano Sabatini <stefasab@gmail.com>
2014-04-29ffprobe: use the codec descriptor if no decoder was found.Nicolas George
2014-04-23ffprobe: fix scaling of vali in value_string() in case -prefix is selectedStefano Sabatini
Fix trac ticket #3523.
2014-04-13ffprobe: do not lose non ascii characters in non utf8 stringsMichael Niedermayer
Fixes Ticket3363 Using U+FFFD REPLACEMENT CHARACTER as suggested by nicolas Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-12-30ffprobe: check av_frame_alloc() failure.Nicolas George
2013-12-25ffprobe: Dont clear AVFrame between uses.Michael Niedermayer
The old API required this clearing in the past, the new API does not require it. Fixes memleak Regression introduced by 37a749012aaacc801fe860428417a6d7b81c103f Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-12-17ffprobe: drop dependancy on sizeof(AVFrame)Michael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-12-15ffprobe: show best_effort_timestamp in the frame sectionwm4
This is useful for debugging. Reference and ffprobe.xsd changes done and tested by Stefano Sabatini. Signed-off-by: Stefano Sabatini <stefasab@gmail.com>
2013-12-14ffprobe: only show tags when explicitly requestedStefano Sabatini
2013-12-13ffprobe: add cosmetical empty lineStefano Sabatini
2013-12-04ffprobe: free shared writer context on exitStefano Sabatini
Fix leak. Spotted-by: Michael Niedermayer
2013-12-01build: rename version.h to libavutil/ffversion.hTimothy Gu
Also the libavutil/ffversion.h will be installed. Rationale: * Applications might want to know FFmpeg's version besides the individual libraries'. * Avoids file name clash between FFmpeg's ./version.h and lib*/version.h when a library source file includes both and is compiled on an out-of-tree build. Fixes #1769. Signed-off-by: Timothy Gu <timothygu99@gmail.com> Reviewed-by: James Almer <jamrial@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-11-28Revert "configure: add #include "version.h" to config.h"Michael Niedermayer
This reverts commit ca21116b3f53a9bdd74364bfab9cde70a044b165. Revert suggested by Jamal: "Bad secondary effect i just noticed: Every time version.h is changed (git pull for example), anything that includes config.h will be recompiled. And that means pretty much every single file in the tree. "
2013-11-28configure: add #include "version.h" to config.hTimothy Gu
Avoid clash with version.h of the libraries. Signed-off-by: Timothy Gu <timothygu99@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-11-26cmdutils: remove this_year constant, use CONFIG_THIS_YEAR insteadStefano Sabatini
Simplify.
2013-11-25ffprobe: add support for subtitle framesMarton Balint
Signed-off-by: Marton Balint <cus@passwd.hu> Signed-off-by: Stefano Sabatini <stefasab@gmail.com>
2013-11-24ffprobe: use designated initializer for AVClassPaul B Mahol
Signed-off-by: Paul B Mahol <onemda@gmail.com>
2013-11-22ffprobe: remove various useless ","Stefano Sabatini
Nitted-By: ubitux
2013-11-22ffprobe: implement string validation settingStefano Sabatini
This should fix trac tickets #1163, #2502.
2013-11-22ffprobe: add support for nested options in writer contextsStefano Sabatini
2013-11-22ffprobe: check for errors, and abort immediatelyStefano Sabatini
This allows to make use of validation features.
2013-10-21ffprobe: fix consistency checks in parse_read_intervals()Stefano Sabatini
Move array size assert after the count increment, and avoid strchr() NULL dereference on p. Should fix FFmpeg coverity issue #1108581.
2013-10-03ffprobe: print stream channel_layout when availableStefano Sabatini
Fix trac ticket #3006.
2013-09-23ffprobe: fix uninitialized variable warningStefano Sabatini
Fix warning: ffprobe.c:1684:21: warning: ‘start’ may be used uninitialized in this function [-Wmaybe-uninitialized] end = start + interval->end; The warning is a false positive, since the variable is accessed only if has_start is set, and in that case start has been already set.
2013-09-19ffprobe: add -read_intervals optionStefano Sabatini
This is also useful to test seeking on an input file. This also addresses trac ticket #1437.
2013-09-17ffprobe: downgrade log level for non fatal errors in open_input_file()Stefano Sabatini
Since the errors are not fatal, it is less confusing not to show them as errors but as warnings. Arbitrarily fixes trac ticket #2419.
2013-09-04ffprobe: show bitmap subtitles size.Nicolas George
Fix trac ticket #2930.
2013-09-01ffprobe: show probe_score in the format sectionStefano Sabatini
Should address trac ticket #2621.
2013-07-28ffprobe: add -show_programs optionFlorent Tribouilloy
The option is used to sort the streams by program. Signed-off-by: Florent Tribouilloy <florent.tribouilloy@smartjog.com> Signed-off-by: Stefano Sabatini <stefasab@gmail.com>
2013-07-28ffprobe: do not treat array elements as nested in the compact writerStefano Sabatini
This fixes rendering of sections containing nested elements followed by an array, for example as in the case: programs->streams->stream enabled by the -show_programs option.
2013-07-08Merge commit '636ced8e1dc8248a1353b416240b93d70ad03edb'Michael Niedermayer
* commit '636ced8e1dc8248a1353b416240b93d70ad03edb': cmdutils: wrap exit explicitly Conflicts: avprobe.c cmdutils.c ffmpeg.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
2013-06-27ffprobe: always exit 1 in case of errorsStefano Sabatini
This is consistent with the other ff* tools, and also avoids spurious success reports when ret%256 = 0.
2013-06-27ffprobe: reindent after previous commitStefano Sabatini
2013-06-27ffprobe: fix exit code with stream specifiersNicolas George
Without this fix, ffprobe would exit with a failure exit code if a stream specifier is given that selects the last stream. Signed-off-by: Nicolas George <nicolas.george@normalesup.org>
2013-06-27ffprobe: simplify branching logic in probe_file()Stefano Sabatini
2013-06-06ffprobe: show chapter and chapter metadata informationStefano Sabatini
Address trac ticket #2636.
2013-03-19ffprobe: set writer context to 0 after allocationStefano Sabatini
Avoid access to uninitialized values, which may result in a crash. This happens for example in case of option parsing failure, since in that case the internal AVBprint buffers are not initialized.
2013-03-17ffprobe: remove deprecated frame "reference" fieldStefano Sabatini
2013-03-13ffprobe: support codec optionsStefano Sabatini
Make ffprobe honour codec options, and support stream specifiers like it is done in ffplay. In particular, address Trac ticket #1859.
2013-03-02ffprobe: use AVFrame accessor functionsMichael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-01-01ffprobe: do not escape '"' between single quotes.Clément Bœsch
2012-12-15ffprobe: show pkt_size in frameStefano Sabatini
Fix trac ticket #2027.
2012-11-23ffprobe: free dictionary in opt_show_entries()Stefano Sabatini
Fix memleak.
2012-11-22ffprobe: implement -sections optionStefano Sabatini
2012-11-22ffprobe: implement subsection field selection through the -show_entries optionStefano Sabatini
2012-11-21ffprobe: fix typo in a commentStefano Sabatini