[FFmpeg-cvslog] h264: hide reference frame errors unless requested

Dustin Brody git at videolan.org
Thu Aug 18 11:48:07 CEST 2011


ffmpeg | branch: master | Dustin Brody <libav at parsoma.net> | Wed Aug 17 18:08:09 2011 -0400| [b490f0c2bcec9d66d8878187f7e6661017e6d398] | committer: Ronald S. Bultje

h264: hide reference frame errors unless requested

Signed-off-by: Ronald S. Bultje <rsbultje at gmail.com>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=b490f0c2bcec9d66d8878187f7e6661017e6d398
---

 libavcodec/h264_refs.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/libavcodec/h264_refs.c b/libavcodec/h264_refs.c
index b7e43e7..ce29caf 100644
--- a/libavcodec/h264_refs.c
+++ b/libavcodec/h264_refs.c
@@ -655,7 +655,7 @@ int ff_h264_execute_ref_pic_marking(H264Context *h, MMCO *mmco, int mmco_count){
 
     print_short_term(h);
     print_long_term(h);
-    return err;
+    return h->s.avctx->error_recognition >= FF_ER_EXPLODE ? err : 0;
 }
 
 int ff_h264_decode_ref_pic_marking(H264Context *h, GetBitContext *gb){



More information about the ffmpeg-cvslog mailing list