]> git.sesse.net Git - ffmpeg/commitdiff
used defined name for testing error resilience level
authorJustin Ruggles <justin.ruggles@gmail.com>
Tue, 8 Jan 2008 23:44:48 +0000 (23:44 +0000)
committerJustin Ruggles <justin.ruggles@gmail.com>
Tue, 8 Jan 2008 23:44:48 +0000 (23:44 +0000)
Originally committed as revision 11478 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/ac3dec.c

index a81286c375c4bd0053730ad6f19aabddb2b93b21..fb23725269b02740f83318aef269edb917cb0751 100644 (file)
@@ -1133,7 +1133,7 @@ static int ac3_decode_frame(AVCodecContext * avctx, void *data, int *data_size,
     }
 
     /* check for crc mismatch */
-    if(avctx->error_resilience > 0) {
+    if(avctx->error_resilience >= FF_ER_CAREFUL) {
         if(av_crc(av_crc_get_table(AV_CRC_16_ANSI), 0, &buf[2], s->frame_size-2)) {
             av_log(avctx, AV_LOG_ERROR, "frame CRC mismatch\n");
             return -1;