comparison aes.h @ 392:d0f3bb6e367e libavutil

Add FFMPEG_ prefix to all multiple inclusion guards.
author diego
date Wed, 17 Oct 2007 09:37:46 +0000
parents f21d1907d47c
children f4fd038fcb58
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 AES_H 21 #ifndef FFMPEG_AES_H
22 #define AES_H 22 #define FFMPEG_AES_H
23 23
24 #include <stdint.h> 24 #include <stdint.h>
25 25
26 extern const int av_aes_size; 26 extern const int av_aes_size;
27 27
42 * @param iv initialization vector for CBC mode, if NULL then ECB will be used 42 * @param iv initialization vector for CBC mode, if NULL then ECB will be used
43 * @param decrypt 0 for encryption, 1 for decryption 43 * @param decrypt 0 for encryption, 1 for decryption
44 */ 44 */
45 void av_aes_crypt(struct AVAES *a, uint8_t *dst, uint8_t *src, int count, uint8_t *iv, int decrypt); 45 void av_aes_crypt(struct AVAES *a, uint8_t *dst, uint8_t *src, int count, uint8_t *iv, int decrypt);
46 46
47 #endif /* AES_H */ 47 #endif /* FFMPEG_AES_H */