annotate adler32.h @ 104:5111e87117b7 libavutil

Align the input buffer in ffplay, introduce a public macro for aligned declarations Update the avcodec_decode_audio and the float_to_int16 descriptions accordingly
author lu_zero
date Thu, 31 Aug 2006 19:14:00 +0000
parents 0dbb7828d014
children 11be8e0d1344
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
67
0dbb7828d014 move adler32 to libavutil
mru
parents:
diff changeset
1 #ifndef ADLER32_H
0dbb7828d014 move adler32 to libavutil
mru
parents:
diff changeset
2 #define ADLER32_H
0dbb7828d014 move adler32 to libavutil
mru
parents:
diff changeset
3
0dbb7828d014 move adler32 to libavutil
mru
parents:
diff changeset
4 unsigned long av_adler32_update(unsigned long adler, const uint8_t *buf,
0dbb7828d014 move adler32 to libavutil
mru
parents:
diff changeset
5 unsigned int len);
0dbb7828d014 move adler32 to libavutil
mru
parents:
diff changeset
6
0dbb7828d014 move adler32 to libavutil
mru
parents:
diff changeset
7 #endif