Commit e63892f5 authored by aurel's avatar aurel

atrac3dec: cosmetics: indentation

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@15530 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 25c9d45c
...@@ -799,9 +799,9 @@ static int decodeFrame(ATRAC3Context *q, const uint8_t* databuf) ...@@ -799,9 +799,9 @@ static int decodeFrame(ATRAC3Context *q, const uint8_t* databuf)
if (databuf == q->decoded_bytes_buffer) { if (databuf == q->decoded_bytes_buffer) {
uint8_t *ptr2 = q->decoded_bytes_buffer+q->bytes_per_frame-1; uint8_t *ptr2 = q->decoded_bytes_buffer+q->bytes_per_frame-1;
ptr1 = q->decoded_bytes_buffer; ptr1 = q->decoded_bytes_buffer;
for (i = 0; i < (q->bytes_per_frame/2); i++, ptr1++, ptr2--) { for (i = 0; i < (q->bytes_per_frame/2); i++, ptr1++, ptr2--) {
FFSWAP(uint8_t,*ptr1,*ptr2); FFSWAP(uint8_t,*ptr1,*ptr2);
} }
} else { } else {
const uint8_t *ptr2 = databuf+q->bytes_per_frame-1; const uint8_t *ptr2 = databuf+q->bytes_per_frame-1;
for (i = 0; i < q->bytes_per_frame; i++) for (i = 0; i < q->bytes_per_frame; i++)
......
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