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
2022-10-17avutil/bprint: Improve doxy documentationMarvin Scholz
Declare proper group, add the file to that group, group the defines and document them. Use lists to represents lists of cases.
2014-11-29avutil/bprint: C++ compatible AVBPrint definition.Vadim Kalinsky
Previous version reviewed-by: Nicolas George <george@nsup.org> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2014-09-21lavu/bprint: add const to av_bprint_is_complete() argument.Nicolas George
2014-07-15avutil & avdevice: remove av_bprint_fd_contents()Michael Niedermayer
MSVC does not allow passing file pointers between libs This API can thus not work with MSVC and as it was very recently added and its it was in no release its removial should not cause any problems A better API will be implemented, but its not finished yet, this revert is to avoid potentially blocking the release Found-by: Hendrik Leppkes <h.leppkes@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2014-07-07avutil/bprint: Add av_bprint_fd_contents()Andrey Utkin
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-08-31lavu/bprint: add append buffer functionLukasz Marek
Signed-off-by: Lukasz Marek <lukasz.m.luki@gmail.com> Reveiwed-by: Nicolas George <nicolas.george@normalesup.org> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-08-10avutil/bprint: add av_vbprintf()Michael Niedermayer
Reviewed-by: Nicolas George <nicolas.george@normalesup.org> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-05-24avutil/bprint: Fix doxygen commentsMichael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-03-07lavu: add escape APIStefano Sabatini
The escape API will be useful to perform escaping programmatically, which is required when crafting argument strings, and will be used for context printing as well. This is based on the ffescape tool code, with a few extensions and fixes.
2012-11-17lavu/bprint: implement av_bprint_strftime().Nicolas George
2012-11-02lavu/bprint: add av_bprint_get_buffer().Nicolas George
It is useful to use bprint to handle a growing buffer used with another API.
2012-07-31lavu/bprint: readd documentation for 0 and 1 av_bprint_init() special valuesStefano Sabatini
The documentation was erroneously removed in 7cf9aadd.
2012-07-28lavu/bprint: extend/clarify documentation for av_bprint_init() size_max valueStefano Sabatini
Also define AV_BPRINT_SIZE_* macros before av_bprint_init() declaration, and mention them in the av_bprint_init() doxy.
2012-06-08bprint: add av_bprint_init_for_buffer().Nicolas George
2012-05-14lavu/bprint: add av_bprint_reset().Clément Bœsch
2012-03-21lavu: add av_bprintf and related.Nicolas George