comparison base64.h @ 392:d0f3bb6e367e libavutil

Add FFMPEG_ prefix to all multiple inclusion guards.
author diego
date Wed, 17 Oct 2007 09:37:46 +0000
parents 86348ea795ad
children 62575220eb1a
comparison
equal deleted inserted replaced
391:997894c973e2 392:d0f3bb6e367e
17 * You should have received a copy of the GNU Lesser General Public 17 * You should have received a copy of the GNU Lesser General Public
18 * License along with FFmpeg; if not, write to the Free Software 18 * License along with FFmpeg; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 */ 20 */
21 21
22 #ifndef AVUTIL_BASE64_H 22 #ifndef FFMPEG_BASE64_H
23 #define AVUTIL_BASE64_H 23 #define FFMPEG_BASE64_H
24 24
25 #include <stdint.h> 25 #include <stdint.h>
26 26
27 /** 27 /**
28 * decodes base64 28 * decodes base64
35 * @param src data, not a string 35 * @param src data, not a string
36 * @param buf output string 36 * @param buf output string
37 */ 37 */
38 char *av_base64_encode(char * buf, int buf_len, uint8_t * src, int len); 38 char *av_base64_encode(char * buf, int buf_len, uint8_t * src, int len);
39 39
40 #endif // AVUTIL_BASE64_H 40 #endif /* FFMPEG_BASE64_H */