#include stdint.h instead of inttypes.h like all libavutil headers do.

Originally committed as revision 12433 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Diego Biurrun 2008-03-13 18:17:03 +00:00
parent bfb80dbe21
commit 32573a74bf
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@
#ifndef FFMPEG_RC4_H
#define FFMPEG_RC4_H
#include <inttypes.h>
#include <stdint.h>
void ff_rc4_enc(const uint8_t *key, int keylen, uint8_t *data, int datalen);