comparison msrledec.c @ 8573:2acf0ae7b041 libavcodec

Fix build: Add intreadwrite.h and bswap.h #includes where necessary.
author diego
date Sun, 11 Jan 2009 22:19:48 +0000
parents ce2bb0ae8587
children e9d9d946f213
comparison
equal deleted inserted replaced
8572:4e746259152d 8573:2acf0ae7b041
24 * MS RLE Decoder based on decoder by Mike Melanson and my own for TSCC 24 * MS RLE Decoder based on decoder by Mike Melanson and my own for TSCC
25 * For more information about the MS RLE format, visit: 25 * For more information about the MS RLE format, visit:
26 * http://www.multimedia.cx/msrle.txt 26 * http://www.multimedia.cx/msrle.txt
27 */ 27 */
28 28
29 #include "libavutil/intreadwrite.h"
29 #include "avcodec.h" 30 #include "avcodec.h"
30 31
31 #define FETCH_NEXT_STREAM_BYTE() \ 32 #define FETCH_NEXT_STREAM_BYTE() \
32 if (stream_ptr >= data_size) \ 33 if (stream_ptr >= data_size) \
33 { \ 34 { \