summaryrefslogtreecommitdiff
path: root/avprobe.c
Commit message (Collapse)AuthorAge
...
* avprobe: close opened codecs after useJanne Grunau2012-05-14
| | | | Fixes "memleak" on closing avprobe to make valgrind happy.
* avprobe: allow showing only one container/stream property.Ronald S. Bultje2012-05-07
| | | | | | This is useful for writing unit tests. Signed-off-by: Anton Khirnov <anton@khirnov.net>
* Mark mutable static data const where appropriate.Alex Converse2012-02-21
|
* avprobe, cmdutils: K&R formatting cosmeticsGaurav Narula2012-01-18
|
* avprobe: use avio_size() instead of deprecated AVFormatContext.file_size.Anton Khirnov2012-01-12
|
* Replace all uses of av_close_input_file() with avformat_close_input().Anton Khirnov2011-12-12
|
* Call avformat_network_init/deinit in the programsMartin Storsjö2011-11-06
| | | | | | | | | 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 Khirnov2011-10-12
|
* avtools: parse loglevel before all the other options.Anton Khirnov2011-09-26
| | | | | 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 Khirnov2011-09-04
| | | | This is the first step to removing the globals plague from avtools.
* cmdutils: move exit_program() declaration to cmdutils from avconvAnton Khirnov2011-09-04
| | | | Allows cmdutils to call each tool's own cleanup function.
* cmdutils: get rid of dummy contexts for examining AVOptions.Anton Khirnov2011-09-03
| | | | Replace it with newly introduced libavutil API.
* Replace deprecated av_find_stream_info() by avformat_find_stream_info().Diego Biurrun2011-08-26
|
* Rename ffprobe to avprobe.Anton Khirnov2011-08-09