- 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>
-
- Feb 05, 2011
-
-
James Zern authored
Using a preset file caused the address of a stack variable to be stored in opt_names/values. This change causes the strings to be dup'd then freed in uninit_opts. Signed-off-by:
Ronald S. Bultje <rsbultje@gmail.com>
-
James Zern authored
Add free to uninit_opts and relocate opt_names to same Signed-off-by:
Ronald S. Bultje <rsbultje@gmail.com>
-
- Jan 24, 2011
-
-
Diego Elio Pettenò authored
Signed-off-by:
Mans Rullgard <mans@mansr.com>
-
- Jan 20, 2011
-
-
Georgi Chorbadzhiyski authored
libavcodec minor version is > 99 so when printing the library versions the output is a little bit broken: libavutil 50. 36. 0 / 50.36. 0 libavcore 0. 16. 1 / 0.16. 1 libavcodec 52.108. 0 / 52.108. 0 libavformat 52. 94. 0 / 52.94. 0 libavdevice 52. 2. 3 / 52. 2. 3 libavfilter 1. 74. 0 / 1.74. 0 libswscale 0. 12. 0 / 0.12. 0 Change the formating to look like this: libavutil 50. 36. 0 / 50. 36. 0 libavcore 0. 16. 1 / 0. 16. 1 libavcodec 52.108. 0 / 52.108. 0 libavformat 52. 94. 0 / 52. 94. 0 libavdevice 52. 2. 3 / 52. 2. 3 libavfilter 1. 74. 0 / 1. 74. 0 libswscale 0. 12. 0 / 0. 12. 0 Signed-off-by:
Mans Rullgard <mans@mansr.com>
-
- Jan 18, 2011
-
-
Mans Rullgard authored
-
- Jan 04, 2011
-
-
Stefano Sabatini authored
cmdutils.c:init_opts(), in the case libswscale compilation is not enabled. Fix ffprobe and ffserver compilation with --disable-swscale. Originally committed as revision 26212 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- Jan 03, 2011
-
-
Martin Storsjö authored
Originally committed as revision 26205 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- Jan 02, 2011
-
-
Anssi Hannula authored
Patch by Anssi Hannula, anssi d hannula d iki d fi Originally committed as revision 26199 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- Jan 01, 2011
-
-
Justin Ruggles authored
Originally committed as revision 26184 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- Nov 22, 2010
-
-
Stefano Sabatini authored
fix crash in ffprobe. Originally committed as revision 25799 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- Nov 04, 2010
-
-
Stefano Sabatini authored
from ffmpeg.c and ffserver.c. Originally committed as revision 25679 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- Oct 18, 2010
-
-
Stefano Sabatini authored
and ffmpeg.c. Originally committed as revision 25520 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- Oct 12, 2010
-
-
Stefano Sabatini authored
ffmpeg.c. Replace it with a more generic definition which can be shared. Originally committed as revision 25453 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- Oct 02, 2010
-
-
Reimar Döffinger authored
between ffmpeg and ffplay and avoids a valgrind error by freeing avformat_opts->key. Originally committed as revision 25309 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- Sep 29, 2010
-
-
Michael Niedermayer authored
Originally committed as revision 25266 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- Sep 28, 2010
-
-
Alexander Strange authored
Because DTS values aren't passed through decoders, they tend to be inaccurate if decoder delay doesn't match what was expected by the encoder. In particular this improves timestamps for H.264 without num_reorder_frames set and with -strict 1, which causes DTS to be up to 16 frames ahead of the picture. Note that this doesn't really improve any file with very broken PTS/DTS, since PTS isn't much more accurate in these. Originally committed as revision 25242 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
Alexander Strange authored
Originally committed as revision 25241 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- Sep 25, 2010
-
-
Stefano Sabatini authored
avcodec_opts[0] or avformat_opts is not set. Originally committed as revision 25186 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- Sep 24, 2010
-
-
Stefano Sabatini authored
Originally committed as revision 25179 to svn://svn.ffmpeg.org/ffmpeg/trunk
-
- Sep 20, 2010
-
-
Stefano Sabatini authored
Originally committed as revision 25149 to svn://svn.ffmpeg.org/ffmpeg/trunk
-