Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | avprobe: also output dar/par if only defined in stream | Anton Khirnov | 2013-01-04 | 1 | -6/+9 |
| | | | | Based on a patch by Jan Gerber <j@v2v.cc> | ||||
* | avprobe: report per stream bit rate if set by the decoder | Janne Grunau | 2012-12-02 | 1 | -0/+4 |
| | |||||
* | tools: do not use av_pix_fmt_descriptors directly. | Anton Khirnov | 2012-10-12 | 1 | -3/+3 |
| | |||||
* | Replace PIX_FMT_* -> AV_PIX_FMT_*, PixelFormat -> AVPixelFormat | Anton Khirnov | 2012-10-08 | 1 | -2/+2 |
| | |||||
* | avconv/avprobe: Add missing 'void' to exit_program() definition | Diego Biurrun | 2012-10-03 | 1 | -1/+1 |
| | |||||
* | Use atexit() instead of defining a custom exit_program() interface. | Diego Elio Pettenò | 2012-10-01 | 1 | -2/+3 |
| | |||||
* | avtools: remove the distinction between func_arg and func2_arg. | Anton Khirnov | 2012-08-30 | 1 | -4/+4 |
| | | | | | | func2_arg is the same as func_arg, except it has one additional parameter. Change all func_arg callbacks to take that parameter (and ignore it). | ||||
* | avprobe: Get rid of ugly casts in the options table | Martin Storsjö | 2012-08-27 | 1 | -13/+14 |
| | | | | | | | This also makes sure the function pointers are stored via the same union member as they are accessed via. Signed-off-by: Martin Storsjö <martin@martin.st> | ||||
* | avconv: split printing "main options" into global and per-file. | Anton Khirnov | 2012-08-19 | 1 | -1/+1 |
| | |||||
* | cmdutils: extend -h to allow printing codec details. | Anton Khirnov | 2012-08-19 | 1 | -2/+1 |
| | |||||
* | avtools: move some newlines to show_help_options(). | Anton Khirnov | 2012-08-19 | 1 | -1/+1 |
| | | | | Don't require every caller to supply them. | ||||
* | avtools: fix show_foo() signatures. | Anton Khirnov | 2012-08-19 | 1 | -1/+2 |
| | | | | | show_foo() functions are declared as void show_foo(void), but called as int show_foo(const char*, const char*). | ||||
* | avprobe: add const to AVCodec pointer | Mans Rullgard | 2012-08-18 | 1 | -1/+1 |
| | | | | Signed-off-by: Mans Rullgard <mans@mansr.com> | ||||
* | avprobe: Include libm.h for the log2 fallback | Martin Storsjö | 2012-08-14 | 1 | -0/+1 |
| | | | | Signed-off-by: Martin Storsjö <martin@martin.st> | ||||
* | Use log2(x) instead of log(x) / log(2) | Mans Rullgard | 2012-08-13 | 1 | -1/+1 |
| | | | | Signed-off-by: Mans Rullgard <mans@mansr.com> | ||||
* | Replace all CODEC_ID_* with AV_CODEC_ID_* | Anton Khirnov | 2012-08-07 | 1 | -1/+1 |
| | |||||
* | lavf: deprecate r_frame_rate. | Anton Khirnov | 2012-07-29 | 1 | -3/+0 |
| | | | | | | | | | | | | | | | | | | | | According to its description, it is supposed to be the LCM of all the frame durations. The usability of such a thing is vanishingly small, especially since we cannot determine it with any amount of reliability. Therefore get rid of it after the next bump. Replace it with the average framerate where it makes sense. FATE results for the wtv and xmv demux tests change. In the wtv case this is caused by the file being corrupted (or possibly badly cut) and containing invalid timestamps. This results in lavf estimating the framerate wrong and making up wrong frame durations. In the xmv case the file contains pts jumps, so again the estimated framerate is far from anything sane and lavf again makes up different frame durations. In some other tests lavf starts making up frame durations from different frame. | ||||
* | avprobe/avconv: fix tentative declaration compile errors on MSVS. | Ronald S. Bultje | 2012-07-28 | 1 | -2/+3 |
| | |||||
* | avprobe: Identify codec probe failures rather than calling them unsupported ↵ | Alex Converse | 2012-06-05 | 1 | -1/+4 |
| | | | | codecs. | ||||
* | avprobe: correctly set the default formatter | Luca Barbato | 2012-05-29 | 1 | -9/+10 |
| | |||||
* | avprobe: move formatter functions in the context | Luca Barbato | 2012-05-29 | 1 | -55/+61 |
| | | | | Avoid possible clashes. | ||||
* | avprobe: restore pseudo-INI old style format for compatibility. | Anton Khirnov | 2012-05-26 | 1 | -0/+50 |
| | |||||
* | avprobe: fix formatting. | Anton Khirnov | 2012-05-26 | 1 | -2/+1 |
| | |||||
* | avprobe: display the codec profile in show_stream() | Christian Schmidt | 2012-05-25 | 1 | -0/+5 |
| | | | | Signed-off-by: Luca Barbato <lu_zero@gentoo.org> | ||||
* | avprobe: fix function prototype | Luca Barbato | 2012-05-25 | 1 | -2/+3 |
| | | | | Make opt_output_format return the correct value. | ||||
* | avprobe: provide JSON output | Luca Barbato | 2012-05-25 | 1 | -0/+120 |
| | | | | JSON usage is quite widespread. | ||||
* | avprobe: output proper INI format | Luca Barbato | 2012-05-25 | 1 | -109/+393 |
| | | | | Make the output valid INI serialization. | ||||
* | avprobe: improve formatting | Luca Barbato | 2012-05-25 | 1 | -3/+4 |
| | | | | Do not use decimals if not needed. | ||||
* | avprobe: don't print format entry name when only one was requested | Anton Khirnov | 2012-05-16 | 1 | -1/+5 |
| | | | | This is easier to parse with automated tools. | ||||
* | avprobe: free options at the end of main() | Janne Grunau | 2012-05-14 | 1 | -0/+3 |
| | |||||
* | avprobe: close opened codecs after use | Janne Grunau | 2012-05-14 | 1 | -1/+15 |
| | | | | Fixes "memleak" on closing avprobe to make valgrind happy. | ||||
* | avprobe: allow showing only one container/stream property. | Ronald S. Bultje | 2012-05-07 | 1 | -20/+48 |
| | | | | | | This is useful for writing unit tests. Signed-off-by: Anton Khirnov <anton@khirnov.net> | ||||
* | Mark mutable static data const where appropriate. | Alex Converse | 2012-02-21 | 1 | -6/+6 |
| | |||||
* | avprobe, cmdutils: K&R formatting cosmetics | Gaurav Narula | 2012-01-18 | 1 | -67/+97 |
| | |||||
* | avprobe: use avio_size() instead of deprecated AVFormatContext.file_size. | Anton Khirnov | 2012-01-12 | 1 | -2/+4 |
| | |||||
* | Replace all uses of av_close_input_file() with avformat_close_input(). | Anton Khirnov | 2011-12-12 | 1 | -1/+1 |
| | |||||
* | Call avformat_network_init/deinit in the programs | Martin Storsjö | 2011-11-06 | 1 | -0/+3 |
| | | | | | | | | | Calling the init function will become mandatory at some later point. By calling it, more heavy network init (such as SSL/TLS library init) can be done once at startup, instead of implicitly when used (which could lead to it being done a number of times). Signed-off-by: Martin Storsjö <martin@martin.st> | ||||
* | cmdutils/avtools: simplify show_help() by using av_opt_child_class_next() | Anton Khirnov | 2011-10-12 | 1 | -3/+1 |
| | |||||
* | avtools: parse loglevel before all the other options. | Anton Khirnov | 2011-09-26 | 1 | -0/+1 |
| | | | | | This way it can be applied to cmdutils too -- e.g. showing the banner and printing startup messages. | ||||
* | cmdutils: add support for caller-provided option context. | Anton Khirnov | 2011-09-04 | 1 | -2/+2 |
| | | | | This is the first step to removing the globals plague from avtools. | ||||
* | cmdutils: move exit_program() declaration to cmdutils from avconv | Anton Khirnov | 2011-09-04 | 1 | -0/+5 |
| | | | | Allows cmdutils to call each tool's own cleanup function. | ||||
* | cmdutils: get rid of dummy contexts for examining AVOptions. | Anton Khirnov | 2011-09-03 | 1 | -5/+2 |
| | | | | Replace it with newly introduced libavutil API. | ||||
* | Replace deprecated av_find_stream_info() by avformat_find_stream_info(). | Diego Biurrun | 2011-08-26 | 1 | -1/+1 |
| | |||||
* | Rename ffprobe to avprobe. | Anton Khirnov | 2011-08-09 | 1 | -0/+419 |