[FFmpeg-cvslog] [propchange]: r17761 - svn:log

rbultje subversion
Tue Mar 3 18:00:21 CET 2009


Author: rbultje
Revision: 17761
Property Name: svn:log
Action: modified

Property diff:
--- old property value
+++ new property value
@@ -1,4 +1,9 @@
-Fix allocated length of the HTTP authentication request field buffer, as
+Reduce allocated length of the HTTP authentication request field buffer, as
 noticed by Stefano and Luca in the "[PATCH]RTSP Basic Authentication"
 mailinglist thread.
 
+av_base64_encode() was recently changed. The previous implementation required
+12 extra bytes (ceil(len(src)/3.)*4+12), whereas the new one is guaranteed to
+fit in an exact buffer (ceil(len(src)/3.)*4), plus one extra byte for the
+trailing zero. This change fixes no bug, it just slightly decreases the
+amount of allocated memory.




More information about the ffmpeg-cvslog mailing list