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

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2015-06-16doc: avoid incorrect phrase 'allows to'Andreas Cadhalpun
Also fix typo found by Lou Logan: Sacrifying -> Sacrificing Reviewed-by: Lou Logan <lou@lrcd.com> Signed-off-by: Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>
2014-11-29lavu/opt: add escaping to av_opt_serializeLukasz Marek
Signed-off-by: Lukasz Marek <lukasz.m.luki2@gmail.com>
2014-11-28lavu/opt: add consts where possibleLukasz Marek
2014-11-16lavu/opt: introduce av_opt_serialize()Lukasz Marek
Function allows to create string containing object's serialized options. Such string may be passed back to av_set_options_string() in order to restore options. Signed-off-by: Lukasz Marek <lukasz.m.luki2@gmail.com>
2014-11-16lavu/opt: introduce av_opt_is_set_to_default()Lukasz Marek
New function allows to check if option is set to its default value Signed-off-by: Lukasz Marek <lukasz.m.luki2@gmail.com>
2014-11-12Merge commit 'c6074a30ba3b5fb4319ee6ee599656d58548cdc8'Michael Niedermayer
* commit 'c6074a30ba3b5fb4319ee6ee599656d58548cdc8': opt: Fix the documentation mentioning av_set_string3 Merged-by: Michael Niedermayer <michaelni@gmx.at>
2014-11-11opt: Fix the documentation mentioning av_set_string3Luca Barbato
It is av_opt_set now.
2014-11-09lavu/opt: document av_opt_copy functionLukasz Marek
2014-10-06avutil: remove obsolete FF_API_FIND_OPT cruftJames Almer
Signed-off-by: James Almer <jamrial@gmail.com>
2014-08-14Merge commit 'a8c104a511f97e4ea617df73b31737e28a8a5126'Michael Niedermayer
* commit 'a8c104a511f97e4ea617df73b31737e28a8a5126': AVOption: add support for dictionary types. Conflicts: libavutil/opt.c libavutil/opt.h libavutil/version.h Merged-by: Michael Niedermayer <michaelni@gmx.at>
2014-08-13AVOption: add support for dictionary types.Andrew Stone
In order to support metadata being set as an option, it's necessary to be able to set dictionaries as values. Signed-off-by: Anton Khirnov <anton@khirnov.net>
2014-06-01avutil/opt: add av_opt_copy()Michael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2014-05-02lavu/opt: add av_opt_set_dict2() functionLukasz Marek
Existing av_opt_set_dict doesn't accept flags. It doesn't allow to pass options to nested structs. New function alllows that. Signed-off-by: Lukasz Marek <lukasz.m.luki2@gmail.com>
2014-04-03lavu/opt: extend AVOptionRange by extra valuesLukasz Marek
AVOptionRange is not flexible enough to store AV_OPT_TYPE_IMAGE_SIZE ranges. Current implementation can only store pixel count. This patch aims to keep backward compatibility and extend AVOptionRange with possibility to store width/height ranges. Signed-off-by: Lukasz Marek <lukasz.m.luki@gmail.com>
2014-02-20Merge commit 'c3ecd968f0e78da6e77f0c06c2f785b266d83cf1'Michael Niedermayer
* commit 'c3ecd968f0e78da6e77f0c06c2f785b266d83cf1': AVOptions: add flags for read/read-only options Conflicts: libavutil/opt.c libavutil/opt.h libavutil/version.h Merged-by: Michael Niedermayer <michaelni@gmx.at>
2014-02-20Merge commit '6bb8720f00e2e6209665f819fb351fd42b82d5d0'Michael Niedermayer
* commit '6bb8720f00e2e6209665f819fb351fd42b82d5d0': AVOptions: deprecate unused AV_OPT_FLAG_METADATA Conflicts: doc/APIchanges libavutil/version.h Merged-by: Michael Niedermayer <michaelni@gmx.at>
2014-02-20AVOptions: add flags for read/read-only optionsAnton Khirnov
2014-02-20AVOptions: deprecate unused AV_OPT_FLAG_METADATAAnton Khirnov
It was never used since it was added and the things it was intended for are now exported differently.
2013-10-23fix order of operations in commentsMichael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-10-17lavu/opt: add AV_OPT_TYPE_CHANNEL_LAYOUT and handler functionsStefano Sabatini
The new type is compatible with AV_OPT_TYPE_INT64, but allows to specify channel layouts using the format accepted by av_get_channel_layout().
2013-10-17lavu/opt.h: fix grammar typo in av_opt_get* doxyStefano Sabatini
2013-10-04lavu/opt: fix doxy for av_opt_get* functions about return valueStefano Sabatini
Success code must be >= 0 and not == 0, consistently with the implementation.
2013-08-12libavutil/opt.h: Fix duplicate wordsMichael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-08-03Merge commit 'b5a138652ff8a5b987d3e1191e67fd9f6575527e'Michael Niedermayer
* commit 'b5a138652ff8a5b987d3e1191e67fd9f6575527e': Give less generic names to global library option arrays Conflicts: libavcodec/options_table.h libavfilter/avfilter.c libavformat/options_table.h libswscale/options.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
2013-08-02Give less generic names to global library option arraysDiego Biurrun
2013-05-17lavu/opt: add AV_OPT_TYPE_COLORPaul B Mahol
Signed-off-by: Paul B Mahol <onemda@gmail.com>
2013-04-13lavu/opt: check int lists length for overflow.Nicolas George
Also add parens on macro arguments.
2013-04-12lavu: add helper functions for integer lists.Nicolas George
Add av_int_list_length() to compute a list length. Add av_opt_set_int_list() to set a binary option. Signed-off-by: Nicolas George <nicolas.george@normalesup.org> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-03-21lavu/opt: add AV_OPT_TYPE_DURATION.Nicolas George
2013-03-20lavu/opt: add AV_OPT_VIDEO_RATE optionPaul B Mahol
Signed-off-by: Paul B Mahol <onemda@gmail.com>
2012-12-08opt: Add support to query rangesMichael Niedermayer
Reviewed-by: Stefano Sabatini <stefasab@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2012-11-25lavu/opt: add av_opt_ accessors for pixel/format/image size optionsStefano Sabatini
The interface is implemented against the style of the other options accessors. Possibly simplify programmatic setting of options.
2012-11-22ensure comment blocks that contain doxygen commands start with double asterixPeter Ross
Reveiwed-by: Stefano Sabatini <stefasab@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2012-11-16lavu/opt: fix av_opt_get_key_value() API.Nicolas George
Do not skip the end delimiter. Reserve positive return values. This is an API break, but the function was introduced less than two weeks ago.
2012-11-04lavu/opt: implement av_opt_get_key_value().Nicolas George
This function does the low-level work of av_opt_set_from_string() but can be used when there is no option context or when a generic handling of unknown keys is needed. av_opt_set_from_string() is changed to make use of it.
2012-11-03lavu/opt: add AV_OPT_SAMPLE_FMT optionStefano Sabatini
2012-09-30lavu/opt: cosmetic fixes forgotten in the previous patch.Nicolas George
2012-09-30opt: implement av_opt_set_from_string().Nicolas George
It is similar to av_set_options_string() but accepts a list of options that can be in shorthand: if the key is omitted on the first fields, the keys from the shorthand list are assumed, in order.
2012-09-06Merge remote-tracking branch 'qatar/master'Michael Niedermayer
* qatar/master: fate: Allow setting the ld parameter from the config file x86: dsputil: Do not redundantly check for CPU caps before calling init funcs configure: Disable some warnings in MSVC x86: vp56: cmov version of vp56_rac_get_prob requires inline asm avopt: fix examples to match the same style about default values as the actual code. configure: Add support for MSVC cl.exe/link.exe lavu: add snprintf(), vsnprint() and strtod() replacements for MS runtime. Conflicts: libavutil/opt.h Merged-by: Michael Niedermayer <michaelni@gmx.at>
2012-09-05avopt: fix examples to match the same style about default values as the ↵Michael Niedermayer
actual code. Signed-off-by: Martin Storsjö <martin@martin.st>
2012-09-05avopt: fix examples to match the same style about default values as the ↵Michael Niedermayer
actual code. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2012-09-05Merge remote-tracking branch 'qatar/master'Michael Niedermayer
* qatar/master: build: eamad: Add missing dependency on mpegvideo code build: utvideoenc: Add missing dependency on Huffman code avopt: Reorder the default_val struct, making i64 the first field Conflicts: configure doc/APIchanges libavutil/version.h Merged-by: Michael Niedermayer <michaelni@gmx.at>
2012-09-05avopt: Reorder the default_val struct, making i64 the first fieldMartin Storsjö
Also mention this change in APIchanges. Signed-off-by: Martin Storsjö <martin@martin.st>
2012-08-13lavu/opt.h: add AV_OPT_FLAG_FILTERING_PARAM macroStefano Sabatini
2012-06-08opt: add AV_OPT_TYPE_PIXEL_FMT.Nicolas George
2012-05-27Merge remote-tracking branch 'qatar/master'Michael Niedermayer
* qatar/master: opt: Add av_opt_set_bin() avconv: Display the error returned by avformat_write_header rtpenc_chain: Return an error code instead of just a plain pointer rtpenc_chain: Free the URLContext on failure rtpenc: Expose the ssrc as an avoption avprobe: display the codec profile in show_stream() avprobe: fix function prototype cosmetics: Fix indentation avprobe: changelog entry avprobe: update documentation avprobe: provide JSON output avprobe: output proper INI format avprobe: improve formatting rtmp: fix url parsing fate: document TARGET_EXEC and its usage Conflicts: doc/APIchanges doc/fate.texi doc/ffprobe.texi ffprobe.c libavformat/version.h libavutil/avutil.h Merged-by: Michael Niedermayer <michaelni@gmx.at>
2012-05-26opt: Add av_opt_set_bin()Samuel Pitoiset
Introduce a new function to set binary data through AVOption, avoiding having to convert the binary data to a string inbetween. Signed-off-by: Martin Storsjö <martin@martin.st>
2012-05-20opt: add AV_OPT_TYPE_IMAGE_SIZE.Nicolas George
2012-04-18AVoption doxy: clarify a few needs in relation to AVClass less structs.Michael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2011-12-06Fix compilation for C++ applicationsGavin Kinsey
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>