Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Remove libpostproc. | Diego Biurrun | 2012-02-23 | 1 | -6/+0 |
| | | | | | | | | This library does not fit into Libav as a whole and its code is just a maintenance burden. Furthermore it is now available as an external project, which completely obviates any reason to keep it around. URL: http://git.videolan.org/?p=libpostproc.git | ||||
* | cmdutils: update copyright year to 2012. | Ronald S. Bultje | 2012-02-08 | 1 | -1/+1 |
| | |||||
* | cmdutils: fix options starting with 'no'. | Alexandra Khirnova | 2012-01-27 | 1 | -4/+2 |
| | | | | | | E.g. non_linear_quant mpeg2video private option. Signed-off-by: Anton Khirnov <anton@khirnov.net> | ||||
* | Drop unnecessary prefix from *sink* variable and struct names. | Diego Biurrun | 2012-01-25 | 1 | -10/+10 |
| | |||||
* | cosmetics: Rename ffsink to avsink. | Diego Biurrun | 2012-01-19 | 1 | -10/+10 |
| | |||||
* | No longer build libpostproc by default | Reinhard Tartler | 2012-01-11 | 1 | -0/+4 |
| | | | | | | | update documentation to inform developers that it may be removed in a later release. Signed-off-by: Reinhard Tartler <siretart@tauware.de> | ||||
* | cmdutils: K&R reformatting cosmetics | Aneesh Dogra | 2012-01-03 | 1 | -160/+196 |
| | | | | Signed-off-by: Diego Biurrun <diego@biurrun.de> | ||||
* | cosmetics: Drop unnecessary parentheses around return values. | Diego Biurrun | 2011-12-30 | 1 | -2/+3 |
| | |||||
* | lavc: add a sample_aspect_ratio field to AVFrame | Stefano Sabatini | 2011-12-25 | 1 | -0/+1 |
| | | | | | | | The sample aspect ratio is a per-frame property, so it makes sense to define it in AVFrame rather than in the codec/stream context. Simplify application-level sample aspect ratio information extraction, and allow further simplifications. | ||||
* | Add libavutil/mathematics.h #includes for INFINITY | Mans Rullgard | 2011-11-22 | 1 | -0/+1 |
| | | | | | | This fixes build errors in some environments. Signed-off-by: Mans Rullgard <mans@mansr.com> | ||||
* | cmdutils: Rename read_file to cmdutils_read_file | Martin Storsjö | 2011-10-31 | 1 | -1/+1 |
| | | | | | | | This symbol name clashes with a symbol in gnutls, if linking statically to that library. Signed-off-by: Martin Storsjö <martin@martin.st> | ||||
* | cmdutils: check fread() return value | Janne Grunau | 2011-10-30 | 1 | -3/+15 |
| | |||||
* | cmdutils/avtools: simplify show_help() by using av_opt_child_class_next() | Anton Khirnov | 2011-10-12 | 1 | -0/+10 |
| | |||||
* | AVOptions: rename FF_OPT_TYPE_* => AV_OPT_TYPE_* | Anton Khirnov | 2011-10-12 | 1 | -1/+1 |
| | |||||
* | Remove all uses of deprecated AVOptions API. | Anton Khirnov | 2011-10-12 | 1 | -1/+1 |
| | |||||
* | avtools: add -v as alias for -loglevel | Mans Rullgard | 2011-10-09 | 1 | -0/+2 |
| | | | | | | This saves a bit of typing. Signed-off-by: Mans Rullgard <mans@mansr.com> | ||||
* | avconv: add support for copying attachments. | Anton Khirnov | 2011-09-27 | 1 | -1/+2 |
| | |||||
* | cmdutils: replace fprintf() by av_log() | Anton Khirnov | 2011-09-26 | 1 | -36/+37 |
| | | | | | | | This way, all messages can be easily disabled with -loglevel. Behavior change -- configuration is printed with AV_LOG_VERBOSE, so it's not shown by default. | ||||
* | avtools: parse loglevel before all the other options. | Anton Khirnov | 2011-09-26 | 1 | -0/+35 |
| | | | | | This way it can be applied to cmdutils too -- e.g. showing the banner and printing startup messages. | ||||
* | cmdutils: move grow_array out of #if CONFIG_AVFILTER | Janne Grunau | 2011-09-23 | 1 | -2/+2 |
| | | | | fixes programs linking with --disable-avfilter | ||||
* | cmdutils: add support for programs in check_stream_specifier() | Anton Khirnov | 2011-09-11 | 1 | -0/+20 |
| | | | | Remove now redundant (and broken/undocumented) opt_programid. | ||||
* | avconv: move audio_sample_fmt to options context. | Anton Khirnov | 2011-09-11 | 1 | -0/+9 |
| | | | | | Also document it and replace undocumented and inconsistent '-sample_fmt list' syntax with -sample_fmts. | ||||
* | avconv: move ts scale to options context. | Anton Khirnov | 2011-09-05 | 1 | -0/+2 |
| | |||||
* | avconv: move start_time, recording_time and input_ts_offset to options context | Anton Khirnov | 2011-09-04 | 1 | -0/+2 |
| | |||||
* | cmdutils: allow storing per-stream/chapter/.... options in a generic way | Anton Khirnov | 2011-09-04 | 1 | -1/+12 |
| | |||||
* | cmdutils: split per-option code out of parse_options(). | Anton Khirnov | 2011-09-04 | 1 | -52/+60 |
| | | | | | This allows options like -target, which are just shortcuts for other options, to work without dummy function for all options they invoke. | ||||
* | cmdutils: add support for caller-provided option context. | Anton Khirnov | 2011-09-04 | 1 | -5/+9 |
| | | | | This is the first step to removing the globals plague from avtools. | ||||
* | cmdutils: declare only one pointer type in OptionDef | Anton Khirnov | 2011-09-04 | 1 | -5/+7 |
| | | | | This will be useful in the following commit. | ||||
* | cmdutils: move grow_array() from avconv to cmdutils. | Anton Khirnov | 2011-09-04 | 1 | -0/+19 |
| | |||||
* | cmdutils: move exit_program() declaration to cmdutils from avconv | Anton Khirnov | 2011-09-04 | 1 | -7/+8 |
| | | | | 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 | -18/+9 |
| | | | | Replace it with newly introduced libavutil API. | ||||
* | cmdutils: allow precisely specifying a stream for AVOptions. | Anton Khirnov | 2011-08-12 | 1 | -5/+55 |
| | |||||
* | cmdutils: allow ':'-separated modifiers in option names. | Anton Khirnov | 2011-08-12 | 1 | -1/+4 |
| | |||||
* | Make a copy of ffmpeg under a new name -- avconv. | Anton Khirnov | 2011-08-12 | 1 | -4/+4 |
| | | | | | | | It will be further developed with a few incompatible changes. ffmpeg.c will stay as is for some time, so any scripts using it won't be broken. | ||||
* | cmdutils: add codec_opts parameter to setup_find_stream_info_opts() | Stefano Sabatini | 2011-07-28 | 1 | -1/+1 |
| | | | | | | Avoid brittle and obfuscating reference to a global. Signed-off-by: Anton Khirnov <anton@khirnov.net> | ||||
* | cmdutils: replace opt_default with opt_default2() and remove set_context_opts | Anton Khirnov | 2011-07-13 | 1 | -107/+1 |
| | |||||
* | ffplay: use new avcodec_open2 and avformat_find_stream_info API. | Anton Khirnov | 2011-07-13 | 1 | -0/+17 |
| | |||||
* | cmdutils: store all codec options in one dict instead of video/audio/sub | Anton Khirnov | 2011-07-13 | 1 | -21/+34 |
| | | | | Split them when codec id is known. | ||||
* | lavc: make avcodec_alloc_context3 officially public. | Anton Khirnov | 2011-07-10 | 1 | -1/+1 |
| | | | | Deprecate avcodec_alloc_context/2. | ||||
* | cmdutils: add opt_default2(). | Anton Khirnov | 2011-06-16 | 1 | -4/+46 |
| | | | | | | It stores options in a dictionary to be passed to new open calls. It will replace opt_default once all the pieces are in place. | ||||
* | AVOptions: add av_opt_find() as a replacement for av_find_opt. | Anton Khirnov | 2011-06-16 | 1 | -3/+3 |
| | |||||
* | cmdutils: add missing NULL check in parse_options() | Stefano Sabatini | 2011-06-12 | 1 | -1/+1 |
| | | | | | | Fix ffplay -i FILE, which was recently broken. Signed-off-by: Anton Khirnov <anton@khirnov.net> | ||||
* | cmdutils: add missing const qualifier | Mans Rullgard | 2011-06-04 | 1 | -1/+1 |
| | | | | Signed-off-by: Mans Rullgard <mans@mansr.com> | ||||
* | cmdutils: remove OPT_FUNC2 | Stefano Sabatini | 2011-05-28 | 1 | -4/+2 |
| | | | | | | | | | Make ff* tools only accept opt_* functions taking two arguments. The distinction between functions with one and two arguments is quite pointless. Simplify parse_options() code. Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com> | ||||
* | cmdutils: use sws_freeContext() instead of av_freep(). | Ronald S. Bultje | 2011-05-27 | 1 | -1/+2 |
| | | | | | av_freep(swsContext) will leak all memory potentially allocated within the swsContext. | ||||
* | ffplay: add a dummy option -i so that it is easy to switch between ffmpeg -i ↵ | Benjamin Larsson | 2011-05-11 | 1 | -2/+2 |
| | | | | | | "file" and ffplay -i "file". Signed-off-by: Anton Khirnov <anton@khirnov.net> | ||||
* | cmdutils: add OPT_INT check in parse_number_or_die() | Stefano Sabatini | 2011-05-10 | 1 | -0/+2 |
| | | | | | | | Check that the value passed for an OPT_INT option is an int, fail otherwise. Signed-off-by: Anton Khirnov <anton@khirnov.net> | ||||
* | cmdutils: remove list_fmts(), simplify | Stefano Sabatini | 2011-05-10 | 1 | -10/+0 |
| | | | | | | | | | | | | | The function was only used in opt_sample_fmt() for listing the sample formats. Move list_fmts() functionality directly into opt_sample_fmt(). Also fix the warning: ffmpeg.c: In function ‘opt_audio_sample_fmt’: ffmpeg.c:2877: warning: passing argument 1 of ‘list_fmts’ from incompatible pointer type cmdutils.h:163: note: expected ‘void (*)(char *, int, int)’ but argument is of type ‘char * (*)(char *, int, enum AVSampleFormat)’ Signed-off-by: Anton Khirnov <anton@khirnov.net> | ||||
* | ffmpeg.c: reset avoptions after each input/output file. | Anton Khirnov | 2011-05-09 | 1 | -0/+1 |
| | | | | This is consistent with how all the other options work. | ||||
* | lavfi: add key_frame and pict_type to AVFilterBufferRefVideo. | Roger Pau Monné | 2011-04-26 | 1 | -0/+2 |
| | | | | Signed-off-by: Anton Khirnov <anton@khirnov.net> |