[FFmpeg-cvslog] r15530 - trunk/libavcodec/atrac3.c
aurel
subversion
Thu Oct 2 23:17:33 CEST 2008
Author: aurel
Date: Thu Oct 2 23:17:33 2008
New Revision: 15530
Log:
atrac3dec: cosmetics: indentation
Modified:
trunk/libavcodec/atrac3.c
Modified: trunk/libavcodec/atrac3.c
==============================================================================
--- trunk/libavcodec/atrac3.c (original)
+++ trunk/libavcodec/atrac3.c Thu Oct 2 23:17:33 2008
@@ -799,9 +799,9 @@ static int decodeFrame(ATRAC3Context *q,
if (databuf == q->decoded_bytes_buffer) {
uint8_t *ptr2 = q->decoded_bytes_buffer+q->bytes_per_frame-1;
ptr1 = q->decoded_bytes_buffer;
- for (i = 0; i < (q->bytes_per_frame/2); i++, ptr1++, ptr2--) {
- FFSWAP(uint8_t,*ptr1,*ptr2);
- }
+ for (i = 0; i < (q->bytes_per_frame/2); i++, ptr1++, ptr2--) {
+ FFSWAP(uint8_t,*ptr1,*ptr2);
+ }
} else {
const uint8_t *ptr2 = databuf+q->bytes_per_frame-1;
for (i = 0; i < q->bytes_per_frame; i++)
More information about the ffmpeg-cvslog
mailing list