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
2018-12-15avutil/avsscanf: do not use long double functionsPaul B Mahol
Not needed when only double is used.
2018-11-22avutil/avsscanf: do not use unsupported p suffix for hex variablePaul B Mahol
2018-11-19avutil/avsscanf: use ptrdiff_t instead of off_tPaul B Mahol
2018-11-18lavu/avsscanf: Do not mix declaration and code.Carl Eugen Hoyos
Fixes the following warning: libavutil/avsscanf.c: In function 'decfloat': libavutil/avsscanf.c:354:9: warning: ISO C90 forbids mixed declarations and code [-Wdeclaration-after-statement] int bitlim = bits-3*(int)(rp-9); ^~~
2018-11-16lavu: add locale-independent sscanf implementationPaul B Mahol
Copied and adopted from musl implementation. * converted all 'long double' to 'double' * removed %m support