]> rtime.felk.cvut.cz Git - frescor/ffmpeg.git/commitdiff
Indent
authormichael <michael@9553f0bf-9b14-0410-a0b8-cfaf0461ba5b>
Sun, 19 Apr 2009 20:41:26 +0000 (20:41 +0000)
committermichael <michael@9553f0bf-9b14-0410-a0b8-cfaf0461ba5b>
Sun, 19 Apr 2009 20:41:26 +0000 (20:41 +0000)
git-svn-id: file:///var/local/repositories/ffmpeg/trunk@18627 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b

libavcodec/pcm.c

index beb831b121ea9ee78c86c645a24f5240f63f36e7..95e33fd607489eb0ac90af9ac3e6a381902fb6e3 100644 (file)
@@ -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;
     }