Commit c64cf2a3 authored by Anton Khirnov's avatar Anton Khirnov

aasc: cosmetics, reformat

parent 808b2227
...@@ -54,8 +54,8 @@ static int aasc_decode_frame(AVCodecContext *avctx, ...@@ -54,8 +54,8 @@ static int aasc_decode_frame(AVCodecContext *avctx,
AVPacket *avpkt) AVPacket *avpkt)
{ {
const uint8_t *buf = avpkt->data; const uint8_t *buf = avpkt->data;
int buf_size = avpkt->size; int buf_size = avpkt->size;
AascContext *s = avctx->priv_data; AascContext *s = avctx->priv_data;
int compr, i, stride; int compr, i, stride;
s->frame.reference = 1; s->frame.reference = 1;
...@@ -65,14 +65,14 @@ static int aasc_decode_frame(AVCodecContext *avctx, ...@@ -65,14 +65,14 @@ static int aasc_decode_frame(AVCodecContext *avctx,
return -1; return -1;
} }
compr = AV_RL32(buf); compr = AV_RL32(buf);
buf += 4; buf += 4;
buf_size -= 4; buf_size -= 4;
switch(compr){ switch (compr) {
case 0: case 0:
stride = (avctx->width * 3 + 3) & ~3; stride = (avctx->width * 3 + 3) & ~3;
for(i = avctx->height - 1; i >= 0; i--){ for (i = avctx->height - 1; i >= 0; i--) {
memcpy(s->frame.data[0] + i*s->frame.linesize[0], buf, avctx->width*3); memcpy(s->frame.data[0] + i * s->frame.linesize[0], buf, avctx->width * 3);
buf += stride; buf += stride;
} }
break; break;
......
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