diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2009-06-06 09:35:15 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2009-06-06 09:35:15 +0000 |
commit | bf7e799c9e83f6f6718866841d3169a91ef6b07e (patch) | |
tree | 3146c3bbf94bc66b4215526ef158f23d0592dd11 /libavutil/base64.h | |
parent | 10ae4bb477426f6a360bed684c6676e20f2de299 (diff) | |
download | ffmpeg-bf7e799c9e83f6f6718866841d3169a91ef6b07e.tar.gz |
Remove '\p', '\c' and '\e' doxygen markup from doxy, as it should
improve plain text doxy readability.
See the thread: "[RFC] Should we use doxygen markup?".
Originally committed as revision 19122 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil/base64.h')
-rw-r--r-- | libavutil/base64.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/libavutil/base64.h b/libavutil/base64.h index e3152ebbd2..103860eff0 100644 --- a/libavutil/base64.h +++ b/libavutil/base64.h @@ -24,23 +24,23 @@ #include <stdint.h> /** - * Decodes the base64-encoded string in \p in and puts the decoded - * data in \p out. + * Decodes the base64-encoded string in in and puts the decoded + * data in out. * - * @param out_size size in bytes of the \p out buffer, it should be at - * least 3/4 of the length of \p in + * @param out_size size in bytes of the out buffer, it should be at + * least 3/4 of the length of in * @return the number of bytes written, or a negative value in case of * error */ int av_base64_decode(uint8_t *out, const char *in, int out_size); /** - * Encodes in base64 the data in \p in and puts the resulting string - * in \p out. + * Encodes in base64 the data in in and puts the resulting string + * in out. * - * @param out_size size in bytes of the \p out string, it should be at - * least ((\p in_size + 2) / 3) * 4 + 1 - * @param in_size size in bytes of the \p in buffer + * @param out_size size in bytes of the out string, it should be at + * least ((in_size + 2) / 3) * 4 + 1 + * @param in_size size in bytes of the in buffer * @return the string containing the encoded data, or NULL in case of * error */ |