- Sep 23, 2011
-
-
Janne Grunau authored
fixes programs linking with --disable-avfilter
-
- Sep 11, 2011
-
-
Anton Khirnov authored
Remove now redundant (and broken/undocumented) opt_programid.
-
Anton Khirnov authored
Also document it and replace undocumented and inconsistent '-sample_fmt list' syntax with -sample_fmts.
-
- Sep 05, 2011
-
-
Anton Khirnov authored
-
- Sep 04, 2011
-
-
Anton Khirnov authored
-
Anton Khirnov authored
-
Anton Khirnov authored
This allows options like -target, which are just shortcuts for other options, to work without dummy function for all options they invoke.
-
Anton Khirnov authored
This is the first step to removing the globals plague from avtools.
-
Anton Khirnov authored
This will be useful in the following commit.
-
Anton Khirnov authored
-
Anton Khirnov authored
Allows cmdutils to call each tool's own cleanup function.
-
- Sep 03, 2011
-
-
Anton Khirnov authored
Replace it with newly introduced libavutil API.
-
- Aug 12, 2011
-
-
Anton Khirnov authored
-
Anton Khirnov authored
-
Anton Khirnov authored
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.
-
- Jul 28, 2011
-
-
Stefano Sabatini authored
Avoid brittle and obfuscating reference to a global. Signed-off-by:
Anton Khirnov <anton@khirnov.net>
-
- Jul 13, 2011
-
-
Anton Khirnov authored
-
Anton Khirnov authored
-
Anton Khirnov authored
Split them when codec id is known.
-
- Jul 10, 2011
-
-
Anton Khirnov authored
Deprecate avcodec_alloc_context/2.
-
- Jun 16, 2011
-
-
Anton Khirnov authored
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.
-
Anton Khirnov authored
-
- Jun 12, 2011
-
-
Stefano Sabatini authored
Fix ffplay -i FILE, which was recently broken. Signed-off-by:
Anton Khirnov <anton@khirnov.net>
-
- Jun 04, 2011
-
-
Mans Rullgard authored
Signed-off-by:
Mans Rullgard <mans@mansr.com>
-
- May 28, 2011
-
-
Stefano Sabatini authored
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>
-
- May 27, 2011
-
-
Ronald S. Bultje authored
av_freep(swsContext) will leak all memory potentially allocated within the swsContext.
-
- May 11, 2011
-
-
Benjamin Larsson authored
ffplay: add a dummy option -i so that it is easy to switch between ffmpeg -i "file" and ffplay -i "file". Signed-off-by:
Anton Khirnov <anton@khirnov.net>
-
- May 10, 2011
-
-
Stefano Sabatini authored
Check that the value passed for an OPT_INT option is an int, fail otherwise. Signed-off-by:
Anton Khirnov <anton@khirnov.net>
-
Stefano Sabatini authored
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>
-
- May 09, 2011
-
-
Anton Khirnov authored
This is consistent with how all the other options work.
-
- Apr 26, 2011
-
-
Roger Pau Monné authored
Signed-off-by:
Anton Khirnov <anton@khirnov.net>
-
- Apr 25, 2011
-
-
Luca Barbato authored
CommandLineToArgvW requires windows.h, include it directly
-
- Apr 23, 2011
-
-
Kirill Gavrilov authored
All file names should be in UTF-8 within libavformat. This is handled by mapping the open() function to an internal one in os_support.h for windows. fopen() could be overridden in the same way, but if that would be used from ffmpeg.c, it would add a dependency on an ff prefixed internal lavf function. Signed-off-by:
Martin Storsjö <martin@martin.st>
-
- Apr 19, 2011
-
-
Anton Khirnov authored
-
- Apr 08, 2011
-
-
Anton Khirnov authored
-
- Mar 19, 2011
-
-
Mans Rullgard authored
Signed-off-by:
Mans Rullgard <mans@mansr.com>
-
- Mar 16, 2011
-
-
Janne Grunau authored
-
Janne Grunau authored
also update the multiple inclusion guards in config.h|mak
-
- Feb 16, 2011
-
-
Stefano Sabatini authored
The new av_parse_time() is created in libavutil/parseutils.h, all the internal functions used by parse_date are moved to libavutil/parseutils.c and made static. Signed-off-by:
Mans Rullgard <mans@mansr.com>
-
- Feb 15, 2011
-
-
Reinhard Tartler authored
It is pretty hopeless that other considerable projects will adopt libavutil alone in other projects. Projects that need small footprint are better off with more specialized libraries such as gnulib or rather just copy the necessary parts that they need. With this in mind, nobody is helped by having libavutil and libavcore split. In order to ease maintenance inside and around FFmpeg and to reduce confusion where to put common code, avcore's functionality is merged (back) to avutil. Signed-off-by:
Reinhard Tartler <siretart@tauware.de>
-