Commit 94ee6c10 authored by Michael Niedermayer's avatar Michael Niedermayer

fix indent

Originally committed as revision 25630 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 0422af7e
...@@ -70,34 +70,34 @@ static int msrle_decode_pal4(AVCodecContext *avctx, AVPicture *pic, ...@@ -70,34 +70,34 @@ static int msrle_decode_pal4(AVCodecContext *avctx, AVPicture *pic,
pixel_ptr += stream_byte; pixel_ptr += stream_byte;
FETCH_NEXT_STREAM_BYTE(); FETCH_NEXT_STREAM_BYTE();
row_ptr -= stream_byte * row_dec; row_ptr -= stream_byte * row_dec;
} else { } else {
// copy pixels from encoded stream // copy pixels from encoded stream
odd_pixel = stream_byte & 1; odd_pixel = stream_byte & 1;
rle_code = (stream_byte + 1) / 2; rle_code = (stream_byte + 1) / 2;
extra_byte = rle_code & 0x01; extra_byte = rle_code & 0x01;
if ((row_ptr + pixel_ptr + stream_byte > frame_size) || if ((row_ptr + pixel_ptr + stream_byte > frame_size) ||
(row_ptr < 0)) { (row_ptr < 0)) {
av_log(avctx, AV_LOG_ERROR, " MS RLE: frame ptr just went out of bounds (1)\n"); av_log(avctx, AV_LOG_ERROR, " MS RLE: frame ptr just went out of bounds (1)\n");
return -1; return -1;
} }
for (i = 0; i < rle_code; i++) { for (i = 0; i < rle_code; i++) {
if (pixel_ptr >= avctx->width) if (pixel_ptr >= avctx->width)
break; break;
FETCH_NEXT_STREAM_BYTE(); FETCH_NEXT_STREAM_BYTE();
pic->data[0][row_ptr + pixel_ptr] = stream_byte >> 4; pic->data[0][row_ptr + pixel_ptr] = stream_byte >> 4;
pixel_ptr++; pixel_ptr++;
if (i + 1 == rle_code && odd_pixel) if (i + 1 == rle_code && odd_pixel)
break; break;
if (pixel_ptr >= avctx->width) if (pixel_ptr >= avctx->width)
break; break;
pic->data[0][row_ptr + pixel_ptr] = stream_byte & 0x0F; pic->data[0][row_ptr + pixel_ptr] = stream_byte & 0x0F;
pixel_ptr++; pixel_ptr++;
} }
// if the RLE code is odd, skip a byte in the stream // if the RLE code is odd, skip a byte in the stream
if (extra_byte) if (extra_byte)
stream_ptr++; stream_ptr++;
} }
} else { } else {
// decode a run of data // decode a run of data
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment