comparison md5.h @ 567:bd4052d9050c libavutil

Globally rename the header inclusion guard names. Consistently apply this rule: the guard name is obtained from the filename by stripping the leading "lib", converting '/' and '.' to '_' and uppercasing the resulting name. Guard names in the root directory have to be prefixed by "FFMPEG_".
author stefano
date Sun, 31 Aug 2008 07:39:47 +0000
parents d0f3bb6e367e
children
comparison
equal deleted inserted replaced
566:34198f8250cf 567:bd4052d9050c
16 * You should have received a copy of the GNU Lesser General Public 16 * You should have received a copy of the GNU Lesser General Public
17 * License along with FFmpeg; if not, write to the Free Software 17 * License along with FFmpeg; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19 */ 19 */
20 20
21 #ifndef FFMPEG_MD5_H 21 #ifndef AVUTIL_MD5_H
22 #define FFMPEG_MD5_H 22 #define AVUTIL_MD5_H
23 23
24 #include <stdint.h> 24 #include <stdint.h>
25 25
26 extern const int av_md5_size; 26 extern const int av_md5_size;
27 27
30 void av_md5_init(struct AVMD5 *ctx); 30 void av_md5_init(struct AVMD5 *ctx);
31 void av_md5_update(struct AVMD5 *ctx, const uint8_t *src, const int len); 31 void av_md5_update(struct AVMD5 *ctx, const uint8_t *src, const int len);
32 void av_md5_final(struct AVMD5 *ctx, uint8_t *dst); 32 void av_md5_final(struct AVMD5 *ctx, uint8_t *dst);
33 void av_md5_sum(uint8_t *dst, const uint8_t *src, const int len); 33 void av_md5_sum(uint8_t *dst, const uint8_t *src, const int len);
34 34
35 #endif /* FFMPEG_MD5_H */ 35 #endif /* AVUTIL_MD5_H */
36 36