base64: improve documentation

Originally committed as revision 23905 to svn://svn.ffmpeg.org/ffmpeg/trunk
oldabi
Måns Rullgård 15 years ago
parent 49bd8e4b84
commit ffd31cfef3
  1. 26
      libavutil/base64.h

@ -24,25 +24,25 @@
#include <stdint.h> #include <stdint.h>
/** /**
* Decode the base64-encoded string in in and put the decoded * Decode a base64-encoded string.
* data in out.
* *
* @param out_size size in bytes of the out buffer, it should be at * @param out buffer for decoded data
* least 3/4 of the length of in * @param in null-terminated input string
* @return the number of bytes written, or a negative value in case of * @param out_size size in bytes of the out buffer, must be at
* error * least 3/4 of the length of in
* @return number of bytes written, or a negative value in case of
* invalid input
*/ */
int av_base64_decode(uint8_t *out, const char *in, int out_size); int av_base64_decode(uint8_t *out, const char *in, int out_size);
/** /**
* Encode in base64 the data in in and put the resulting string * Encode data to base64 and null-terminate.
* in out.
* *
* @param out_size size in bytes of the out string, it should be at * @param out buffer for encoded data
* least ((in_size + 2) / 3) * 4 + 1 * @param out_size size in bytes of the output buffer, must be at
* @param in_size size in bytes of the in buffer * least AV_BASE64_SIZE(in_size)
* @return the string containing the encoded data, or NULL in case of * @param in_size size in bytes of the 'in' buffer
* error * @return 'out' or NULL in case of error
*/ */
char *av_base64_encode(char *out, int out_size, const uint8_t *in, int in_size); char *av_base64_encode(char *out, int out_size, const uint8_t *in, int in_size);

Loading…
Cancel
Save