diff options
author | Marco Gerards <mgerards@xs4all.nl> | 2007-04-08 12:05:02 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2007-04-08 12:05:02 +0000 |
commit | 90f2a1a03ce5759bc863f5adefe926f322fcc392 (patch) | |
tree | 77c031a41c02c5252188fd79afc0296e33946d59 /libavcodec/adpcm.c | |
parent | ac5565d88c0d503c962cbb958298a2cd1203cd90 (diff) | |
download | ffmpeg-90f2a1a03ce5759bc863f5adefe926f322fcc392.tar.gz |
cosmetics: indentation fix
patch by Marco Gerards, mgerards xs4all nl
Originally committed as revision 8680 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/adpcm.c')
-rw-r--r-- | libavcodec/adpcm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/adpcm.c b/libavcodec/adpcm.c index e03a4b4879..d02ccfb9f2 100644 --- a/libavcodec/adpcm.c +++ b/libavcodec/adpcm.c @@ -1317,7 +1317,7 @@ static int adpcm_decode_frame(AVCodecContext *avctx, } break; case CODEC_ID_ADPCM_THP: - { + { int table[2][16]; unsigned int samplecnt; int prev[2][2]; @@ -1375,7 +1375,7 @@ static int adpcm_decode_frame(AVCodecContext *avctx, increased exactly one time too often. */ samples -= st; break; - } + } default: return -1; |