Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2011-10-31cmdutils: Rename read_file to cmdutils_read_fileMartin Storsjö
This symbol name clashes with a symbol in gnutls, if linking statically to that library. Signed-off-by: Martin Storsjö <martin@martin.st>
2011-10-30cmdutils: check fread() return valueJanne Grunau
2011-10-12cmdutils/avtools: simplify show_help() by using av_opt_child_class_next()Anton Khirnov
2011-10-12AVOptions: rename FF_OPT_TYPE_* => AV_OPT_TYPE_*Anton Khirnov
2011-10-12Remove all uses of deprecated AVOptions API.Anton Khirnov
2011-10-09avtools: add -v as alias for -loglevelMans Rullgard
This saves a bit of typing. Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-09-27avconv: add support for copying attachments.Anton Khirnov
2011-09-26cmdutils: replace fprintf() by av_log()Anton Khirnov
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.
2011-09-26avtools: parse loglevel before all the other options.Anton Khirnov
This way it can be applied to cmdutils too -- e.g. showing the banner and printing startup messages.
2011-09-23cmdutils: move grow_array out of #if CONFIG_AVFILTERJanne Grunau
fixes programs linking with --disable-avfilter
2011-09-11cmdutils: add support for programs in check_stream_specifier()Anton Khirnov
Remove now redundant (and broken/undocumented) opt_programid.
2011-09-11avconv: move audio_sample_fmt to options context.Anton Khirnov
Also document it and replace undocumented and inconsistent '-sample_fmt list' syntax with -sample_fmts.
2011-09-05avconv: move ts scale to options context.Anton Khirnov
2011-09-04avconv: move start_time, recording_time and input_ts_offset to options contextAnton Khirnov
2011-09-04cmdutils: allow storing per-stream/chapter/.... options in a generic wayAnton Khirnov
2011-09-04cmdutils: split per-option code out of parse_options().Anton Khirnov
This allows options like -target, which are just shortcuts for other options, to work without dummy function for all options they invoke.
2011-09-04cmdutils: add support for caller-provided option context.Anton Khirnov
This is the first step to removing the globals plague from avtools.
2011-09-04cmdutils: declare only one pointer type in OptionDefAnton Khirnov
This will be useful in the following commit.
2011-09-04cmdutils: move grow_array() from avconv to cmdutils.Anton Khirnov
2011-09-04cmdutils: move exit_program() declaration to cmdutils from avconvAnton Khirnov
Allows cmdutils to call each tool's own cleanup function.
2011-09-03cmdutils: get rid of dummy contexts for examining AVOptions.Anton Khirnov
Replace it with newly introduced libavutil API.
2011-08-12cmdutils: allow precisely specifying a stream for AVOptions.Anton Khirnov
2011-08-12cmdutils: allow ':'-separated modifiers in option names.Anton Khirnov
2011-08-12Make a copy of ffmpeg under a new name -- avconv.Anton Khirnov
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.
2011-07-28cmdutils: add codec_opts parameter to setup_find_stream_info_opts()Stefano Sabatini
Avoid brittle and obfuscating reference to a global. Signed-off-by: Anton Khirnov <anton@khirnov.net>
2011-07-14cmdutils: replace opt_default with opt_default2() and remove set_context_optsAnton Khirnov
2011-07-14ffplay: use new avcodec_open2 and avformat_find_stream_info API.Anton Khirnov
2011-07-14cmdutils: store all codec options in one dict instead of video/audio/subAnton Khirnov
Split them when codec id is known.
2011-07-10lavc: make avcodec_alloc_context3 officially public.Anton Khirnov
Deprecate avcodec_alloc_context/2.
2011-06-16cmdutils: add opt_default2().Anton Khirnov
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.
2011-06-16AVOptions: add av_opt_find() as a replacement for av_find_opt.Anton Khirnov
2011-06-12cmdutils: add missing NULL check in parse_options()Stefano Sabatini
Fix ffplay -i FILE, which was recently broken. Signed-off-by: Anton Khirnov <anton@khirnov.net>
2011-06-04cmdutils: add missing const qualifierMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-05-28cmdutils: remove OPT_FUNC2Stefano Sabatini
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>
2011-05-27cmdutils: use sws_freeContext() instead of av_freep().Ronald S. Bultje
av_freep(swsContext) will leak all memory potentially allocated within the swsContext.
2011-05-11ffplay: add a dummy option -i so that it is easy to switch between ffmpeg -i ↵Benjamin Larsson
"file" and ffplay -i "file". Signed-off-by: Anton Khirnov <anton@khirnov.net>
2011-05-10cmdutils: add OPT_INT check in parse_number_or_die()Stefano Sabatini
Check that the value passed for an OPT_INT option is an int, fail otherwise. Signed-off-by: Anton Khirnov <anton@khirnov.net>
2011-05-10cmdutils: remove list_fmts(), simplifyStefano Sabatini
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>
2011-05-09ffmpeg.c: reset avoptions after each input/output file.Anton Khirnov
This is consistent with how all the other options work.
2011-04-26lavfi: add key_frame and pict_type to AVFilterBufferRefVideo.Roger Pau Monné
Signed-off-by: Anton Khirnov <anton@khirnov.net>
2011-04-25win32: include the correct header in cmdutils.cLuca Barbato
CommandLineToArgvW requires windows.h, include it directly
2011-04-24Handle unicode file names on windowsKirill Gavrilov
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>
2011-04-19lavc: remove the FF_API_SET_STRING_OLD cruft.Anton Khirnov
2011-04-08avio: deprecate av_protocol_next().Anton Khirnov
2011-03-19Replace FFmpeg with Libav in licence headersMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2011-03-16use LIBAV_LICENSE and LIBAV_VERSION instead of FFMPEG_*Janne Grunau
2011-03-16replace FFMPEG with LIBAV in FFMPEG_CONFIGURATIONJanne Grunau
also update the multiple inclusion guards in config.h|mak
2011-02-17Deprecate parse_date() in favor of av_parse_time().Stefano Sabatini
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>
2011-02-15Merge libavcore into libavutilReinhard Tartler
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>
2011-02-06cmdutils: fix codec-specific options from presetJames Zern
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>