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
2012-10-12Use the new aes/md5/sha/tree allocation functionsMartin Storsjö
Signed-off-by: Martin Storsjö <martin@martin.st>
2012-07-26Support urlencoded http authentication credentialsAntti Seppälä
It should be possible to specify usernames in http requests containing urlencoded characters. This patch adds support for decoding the auth strings. Signed-off-by: Antti Seppälä <a.seppala@gmail.com> Signed-off-by: Martin Storsjö <martin@martin.st>
2012-03-13httpauth: Parse the stale field in digest authMartin Storsjö
Signed-off-by: Martin Storsjö <martin@martin.st>
2012-01-28cosmetics: Remove extra newlines at EOFAlex Converse
2011-11-11http: Handle proxy authenticationMartin Storsjö
Tested with both Basic and Digest authentication, and tested with both proxy authentication and authentication for the requested resource at the same time. Signed-off-by: Martin Storsjö <martin@martin.st>
2011-03-19Replace FFmpeg with Libav in licence headersMans Rullgard
Signed-off-by: Mans Rullgard <mans@mansr.com>
2010-08-19Make parse_key_value from httpauth a common lavf internal functionMartin Storsjö
Originally committed as revision 24832 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-06-04Use AV_BASE64_SIZE() macroHoward Chu
Originally committed as revision 23462 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-06-04httpauth: Fix the length passed to av_strlcatMartin Storsjö
Since the buffer always was large enough, this bug didn't have any effect in practice. Originally committed as revision 23447 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-05-23Make ff_random_get_seed public, rename to av_get_random_seed, export the headerMartin Storsjö
Keep an old ff_ named function for binary compatibility until the next major bump. Originally committed as revision 23254 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-04-03Fix buffer size; should hold 2 32-bit integers in hex = 16 chars + terminatingRonald S. Bultje
zero, so should be 17 bytes, not 9. Originally committed as revision 22786 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-26Remove a redundant null pointer checkMartin Storsjö
Originally committed as revision 22679 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-25Add support for http digest authenticationMartin Storsjö
Originally committed as revision 22667 to svn://svn.ffmpeg.org/ffmpeg/trunk
2010-03-25Split out http authentication handling into a separate fileMartin Storsjö
This prepares for adding support for more authentication methods Originally committed as revision 22660 to svn://svn.ffmpeg.org/ffmpeg/trunk