]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/rle.h
Replace "signed short" typecast with "int16_t" as suggested by
[ffmpeg] / libavcodec / rle.h
index 929dc9090d9dd0ef49c5e28c7639545ec323dc23..15252c85d0ea5ba9eaba06b5d8b53aa82ce126a9 100644 (file)
  * You should have received a copy of the GNU Lesser General Public
  * License along with FFmpeg; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
- *
  */
 
 #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.