comparison msrledec.c @ 11317:35d05a2f4361 libavcodec

Include msrledec.h: It contains the prototype for ff_msrle_decode().
author cehoyos
date Sun, 28 Feb 2010 03:41:59 +0000
parents 71cf44ecaa70
children 7dd2a45249a9
comparison
equal deleted inserted replaced
11316:6b869b5a5425 11317:35d05a2f4361
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 "libavutil/intreadwrite.h"
30 #include "avcodec.h" 30 #include "avcodec.h"
31 #include "msrledec.h"
31 32
32 #define FETCH_NEXT_STREAM_BYTE() \ 33 #define FETCH_NEXT_STREAM_BYTE() \
33 if (stream_ptr >= data_size) \ 34 if (stream_ptr >= data_size) \
34 { \ 35 { \
35 av_log(avctx, AV_LOG_ERROR, " MS RLE: stream ptr just went out of bounds (1)\n"); \ 36 av_log(avctx, AV_LOG_ERROR, " MS RLE: stream ptr just went out of bounds (1)\n"); \