]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/mpegaudiodec.c
idct_sse2_xvid: remove libavutil/internal.h include
[ffmpeg] / libavcodec / mpegaudiodec.c
index d24b35dbfd83f51c5c692885def723c0d2ce083d..85079761df3ae7a7298d566afabecdf1cff0c9ad 100644 (file)
@@ -1686,7 +1686,7 @@ static int decode_frame(AVCodecContext * avctx, void *data, int *got_frame_ptr,
     if (s->frame_size <= 0 || s->frame_size > buf_size) {
         av_log(avctx, AV_LOG_ERROR, "incomplete frame\n");
         return AVERROR_INVALIDDATA;
-    }else if(s->frame_size < buf_size){
+    } else if (s->frame_size < buf_size) {
         av_log(avctx, AV_LOG_DEBUG, "incorrect frame size - multiple frames in buffer?\n");
         buf_size= s->frame_size;
     }