comparison adpcm.c @ 4821:42eef6c711ac libavcodec

cosmetics: indentation fix patch by Marco Gerards, mgerards xs4all nl
author diego
date Sun, 08 Apr 2007 12:05:02 +0000
parents 0066256e99da
children ae2f8c9bc25d
comparison
equal deleted inserted replaced
4820:7470749c2384 4821:42eef6c711ac
1315 } 1315 }
1316 src++; 1316 src++;
1317 } 1317 }
1318 break; 1318 break;
1319 case CODEC_ID_ADPCM_THP: 1319 case CODEC_ID_ADPCM_THP:
1320 { 1320 {
1321 int table[2][16]; 1321 int table[2][16];
1322 unsigned int samplecnt; 1322 unsigned int samplecnt;
1323 int prev[2][2]; 1323 int prev[2][2];
1324 int ch; 1324 int ch;
1325 1325
1373 1373
1374 /* In the previous loop, in case stereo is used, samples is 1374 /* In the previous loop, in case stereo is used, samples is
1375 increased exactly one time too often. */ 1375 increased exactly one time too often. */
1376 samples -= st; 1376 samples -= st;
1377 break; 1377 break;
1378 } 1378 }
1379 1379
1380 default: 1380 default:
1381 return -1; 1381 return -1;
1382 } 1382 }
1383 *data_size = (uint8_t *)samples - (uint8_t *)data; 1383 *data_size = (uint8_t *)samples - (uint8_t *)data;