diff options
author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2008-03-01 03:05:13 +0100 |
---|---|---|
committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2008-03-01 03:05:13 +0100 |
commit | 1d0b3b20c34517b9d1ddf3ea347776304b0c4b44 (patch) | |
tree | 89f4fc640c2becc6f00ae08996754952ecf149c1 /contrib/ffmpeg/libavutil/base64.h | |
parent | 09496ad3469a0ade8dbd9a351e639b78f20b7942 (diff) | |
download | xine-lib-1d0b3b20c34517b9d1ddf3ea347776304b0c4b44.tar.gz xine-lib-1d0b3b20c34517b9d1ddf3ea347776304b0c4b44.tar.bz2 |
Update internal FFmpeg copy.
Diffstat (limited to 'contrib/ffmpeg/libavutil/base64.h')
-rw-r--r-- | contrib/ffmpeg/libavutil/base64.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/contrib/ffmpeg/libavutil/base64.h b/contrib/ffmpeg/libavutil/base64.h index 3d905313c..e95e4ea3e 100644 --- a/contrib/ffmpeg/libavutil/base64.h +++ b/contrib/ffmpeg/libavutil/base64.h @@ -19,6 +19,11 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ +#ifndef FFMPEG_BASE64_H +#define FFMPEG_BASE64_H + +#include <stdint.h> + /** * decodes base64 * param order as strncpy() @@ -30,5 +35,6 @@ int av_base64_decode(uint8_t * out, const char *in, int out_length); * @param src data, not a string * @param buf output string */ -char *av_base64_encode(char * buf, int buf_len, uint8_t * src, int len); +char *av_base64_encode(char * buf, int buf_len, const uint8_t * src, int len); +#endif /* FFMPEG_BASE64_H */ |