summaryrefslogtreecommitdiff
path: root/libavcodec/pcm.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2009-04-19 20:41:26 +0000
committerMichael Niedermayer <michaelni@gmx.at>2009-04-19 20:41:26 +0000
commit34365443fd8afd7a5bc36414d6918cd2bc09dc89 (patch)
tree4a4a1bfc2b71b1127bb603266369bebdced25585 /libavcodec/pcm.c
parent012e4f5a18b11813e9b5a51181ef783b78959d21 (diff)
Indent
Originally committed as revision 18627 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/pcm.c')
-rw-r--r--libavcodec/pcm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/pcm.c b/libavcodec/pcm.c
index beb831b121..95e33fd607 100644
--- a/libavcodec/pcm.c
+++ b/libavcodec/pcm.c
@@ -362,8 +362,8 @@ static int pcm_decode_frame(AVCodecContext *avctx,
if(n && buf_size % n){
if (buf_size < n) {
- av_log(avctx, AV_LOG_ERROR, "invalid PCM packet\n");
- return -1;
+ av_log(avctx, AV_LOG_ERROR, "invalid PCM packet\n");
+ return -1;
}else
buf_size -= buf_size % n;
}