diff rle.h @ 5162:4394344397d8 libavcodec

include all prerequisites in header files
author mru
date Sat, 16 Jun 2007 22:59:13 +0000
parents 3cd67a410b68
children 2b72f9bc4f06
line wrap: on
line diff
--- a/rle.h	Sat Jun 16 22:58:43 2007 +0000
+++ b/rle.h	Sat Jun 16 22:59:13 2007 +0000
@@ -22,6 +22,8 @@
 #ifndef RLE_H
 #define RLE_H
 
+#include <stdint.h>
+
 /**
  * RLE compress the row, with maximum size of out_size. Value before repeated bytes is (count ^ xor_rep) + add_rep.
  *                                                      Value before raw bytes is      (count ^ xor_raw) + add_raw.