comparison sha1.h @ 392:d0f3bb6e367e libavutil

Add FFMPEG_ prefix to all multiple inclusion guards.
author diego
date Wed, 17 Oct 2007 09:37:46 +0000
parents 47335869d5f7
children 81f4d434dc96
comparison
equal deleted inserted replaced
391:997894c973e2 392:d0f3bb6e367e
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 AV_SHA1_H 21 #ifndef FFMPEG_SHA1_H
22 #define AV_SHA1_H 22 #define FFMPEG_SHA1_H
23 23
24 #include <stdint.h> 24 #include <stdint.h>
25 25
26 extern const int av_sha1_size; 26 extern const int av_sha1_size;
27 27
28 struct AVSHA1; 28 struct AVSHA1;
29 29
30 void av_sha1_init(struct AVSHA1* context); 30 void av_sha1_init(struct AVSHA1* context);
31 void av_sha1_update(struct AVSHA1* context, uint8_t* data, unsigned int len); 31 void av_sha1_update(struct AVSHA1* context, uint8_t* data, unsigned int len);
32 void av_sha1_final(struct AVSHA1* context, uint8_t digest[20]); 32 void av_sha1_final(struct AVSHA1* context, uint8_t digest[20]);
33 #endif 33
34 #endif /* FFMPEG_SHA1_H */