spelling/grammar/consistency review part II

Originally committed as revision 16848 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Diego Biurrun
2009-01-28 23:03:17 +00:00
parent 7b484a7a17
commit bfe3676feb
11 changed files with 43 additions and 42 deletions

View File

@ -1,5 +1,4 @@
/*
* Base64.c
* Copyright (c) 2006 Ryan Martell. (rdm4@martellventures.com)
*
* This file is part of FFmpeg.
@ -25,13 +24,13 @@
#include <stdint.h>
/**
* decodes base64
* param order as strncpy()
* Decodes Base64.
* Parameter order is the same as strncpy().
*/
int av_base64_decode(uint8_t * out, const char *in, int out_length);
/**
* encodes base64
* Encodes Base64.
* @param src data, not a string
* @param buf output string
*/