Commit 6781b531 authored by Anton Khirnov's avatar Anton Khirnov

rl2: cosmetics, reformat

parent 3c6e5a84
...@@ -71,9 +71,9 @@ static void rl2_rle_decode(Rl2Context *s, const uint8_t *in, int size, ...@@ -71,9 +71,9 @@ static void rl2_rle_decode(Rl2Context *s, const uint8_t *in, int size,
uint8_t *line_end; uint8_t *line_end;
/** copy start of the background frame */ /** copy start of the background frame */
for(i=0;i<=base_y;i++){ for (i = 0; i <= base_y; i++) {
if(s->back_frame) if (s->back_frame)
memcpy(out,back_frame,s->avctx->width); memcpy(out, back_frame, s->avctx->width);
out += stride; out += stride;
back_frame += s->avctx->width; back_frame += s->avctx->width;
} }
...@@ -82,40 +82,40 @@ static void rl2_rle_decode(Rl2Context *s, const uint8_t *in, int size, ...@@ -82,40 +82,40 @@ static void rl2_rle_decode(Rl2Context *s, const uint8_t *in, int size,
out += base_x - stride; out += base_x - stride;
/** decode the variable part of the frame */ /** decode the variable part of the frame */
while(in < in_end){ while (in < in_end) {
uint8_t val = *in++; uint8_t val = *in++;
int len = 1; int len = 1;
if(val >= 0x80){ if (val >= 0x80) {
if(in >= in_end) if (in >= in_end)
break; break;
len = *in++; len = *in++;
if(!len) if (!len)
break; break;
} }
if(len >= out_end - out) if (len >= out_end - out)
break; break;
if(s->back_frame) if (s->back_frame)
val |= 0x80; val |= 0x80;
else else
val &= ~0x80; val &= ~0x80;
while(len--){ while (len--) {
*out++ = (val == 0x80)? *back_frame:val; *out++ = (val == 0x80) ? *back_frame : val;
back_frame++; back_frame++;
if(out == line_end){ if (out == line_end) {
out += stride_adj; out += stride_adj;
line_end += stride; line_end += stride;
if(len >= out_end - out) if (len >= out_end - out)
break; break;
} }
} }
} }
/** copy the rest from the background frame */ /** copy the rest from the background frame */
if(s->back_frame){ if (s->back_frame) {
while(out < out_end){ while (out < out_end) {
memcpy(out, back_frame, line_end - out); memcpy(out, back_frame, line_end - out);
back_frame += line_end - out; back_frame += line_end - out;
out = line_end + stride_adj; out = line_end + stride_adj;
...@@ -135,11 +135,12 @@ static av_cold int rl2_decode_init(AVCodecContext *avctx) ...@@ -135,11 +135,12 @@ static av_cold int rl2_decode_init(AVCodecContext *avctx)
Rl2Context *s = avctx->priv_data; Rl2Context *s = avctx->priv_data;
int back_size; int back_size;
int i; int i;
s->avctx = avctx; s->avctx = avctx;
avctx->pix_fmt = AV_PIX_FMT_PAL8; avctx->pix_fmt = AV_PIX_FMT_PAL8;
/** parse extra data */ /** parse extra data */
if(!avctx->extradata || avctx->extradata_size < EXTRADATA1_SIZE){ if (!avctx->extradata || avctx->extradata_size < EXTRADATA1_SIZE) {
av_log(avctx, AV_LOG_ERROR, "invalid extradata size\n"); av_log(avctx, AV_LOG_ERROR, "invalid extradata size\n");
return AVERROR(EINVAL); return AVERROR(EINVAL);
} }
...@@ -148,24 +149,24 @@ static av_cold int rl2_decode_init(AVCodecContext *avctx) ...@@ -148,24 +149,24 @@ static av_cold int rl2_decode_init(AVCodecContext *avctx)
s->video_base = AV_RL16(&avctx->extradata[0]); s->video_base = AV_RL16(&avctx->extradata[0]);
s->clr_count = AV_RL32(&avctx->extradata[2]); s->clr_count = AV_RL32(&avctx->extradata[2]);
if(s->video_base >= avctx->width * avctx->height){ if (s->video_base >= avctx->width * avctx->height) {
av_log(avctx, AV_LOG_ERROR, "invalid video_base\n"); av_log(avctx, AV_LOG_ERROR, "invalid video_base\n");
return AVERROR_INVALIDDATA; return AVERROR_INVALIDDATA;
} }
/** initialize palette */ /** initialize palette */
for(i=0;i<AVPALETTE_COUNT;i++) for (i = 0; i < AVPALETTE_COUNT; i++)
s->palette[i] = AV_RB24(&avctx->extradata[6 + i * 3]); s->palette[i] = AV_RB24(&avctx->extradata[6 + i * 3]);
/** decode background frame if present */ /** decode background frame if present */
back_size = avctx->extradata_size - EXTRADATA1_SIZE; back_size = avctx->extradata_size - EXTRADATA1_SIZE;
if(back_size > 0){ if (back_size > 0) {
uint8_t *back_frame = av_mallocz(avctx->width*avctx->height); uint8_t *back_frame = av_mallocz(avctx->width*avctx->height);
if(!back_frame) if (!back_frame)
return AVERROR(ENOMEM); return AVERROR(ENOMEM);
rl2_rle_decode(s,avctx->extradata + EXTRADATA1_SIZE,back_size, rl2_rle_decode(s, avctx->extradata + EXTRADATA1_SIZE, back_size,
back_frame,avctx->width,0); back_frame, avctx->width, 0);
s->back_frame = back_frame; s->back_frame = back_frame;
} }
return 0; return 0;
...@@ -180,18 +181,19 @@ static int rl2_decode_frame(AVCodecContext *avctx, ...@@ -180,18 +181,19 @@ static int rl2_decode_frame(AVCodecContext *avctx,
int ret, buf_size = avpkt->size; int ret, buf_size = avpkt->size;
Rl2Context *s = avctx->priv_data; Rl2Context *s = avctx->priv_data;
if(s->frame.data[0]) if (s->frame.data[0])
avctx->release_buffer(avctx, &s->frame); avctx->release_buffer(avctx, &s->frame);
/** get buffer */ /** get buffer */
s->frame.reference= 0; s->frame.reference = 0;
if ((ret = ff_get_buffer(avctx, &s->frame)) < 0) { if ((ret = ff_get_buffer(avctx, &s->frame)) < 0) {
av_log(s->avctx, AV_LOG_ERROR, "get_buffer() failed\n"); av_log(s->avctx, AV_LOG_ERROR, "get_buffer() failed\n");
return ret; return ret;
} }
/** run length decode */ /** run length decode */
rl2_rle_decode(s,buf,buf_size,s->frame.data[0],s->frame.linesize[0],s->video_base); rl2_rle_decode(s, buf, buf_size, s->frame.data[0], s->frame.linesize[0],
s->video_base);
/** make the palette available on the way out */ /** make the palette available on the way out */
memcpy(s->frame.data[1], s->palette, AVPALETTE_SIZE); memcpy(s->frame.data[1], s->palette, AVPALETTE_SIZE);
...@@ -213,7 +215,7 @@ static av_cold int rl2_decode_end(AVCodecContext *avctx) ...@@ -213,7 +215,7 @@ static av_cold int rl2_decode_end(AVCodecContext *avctx)
{ {
Rl2Context *s = avctx->priv_data; Rl2Context *s = avctx->priv_data;
if(s->frame.data[0]) if (s->frame.data[0])
avctx->release_buffer(avctx, &s->frame); avctx->release_buffer(avctx, &s->frame);
av_free(s->back_frame); av_free(s->back_frame);
......
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