diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-08-02 22:01:59 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-08-02 22:01:59 +0200 |
commit | 459996325dab6eeebdc2760827d37ec1e0bcba5c (patch) | |
tree | 7adf3bb257e85728f329fa9e6908176a010650da /libavcodec/error_resilience.c | |
parent | d73371b58c3d5bea4f184927392913169f8ba943 (diff) | |
download | ffmpeg-459996325dab6eeebdc2760827d37ec1e0bcba5c.tar.gz |
avcodec/error_resilience: comment out unused assignment
Its not removed as the code which uses this is out-commented too.
Found-by: CSA
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/error_resilience.c')
-rw-r--r-- | libavcodec/error_resilience.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/error_resilience.c b/libavcodec/error_resilience.c index 86e33a1dcb..ff5c7d0af9 100644 --- a/libavcodec/error_resilience.c +++ b/libavcodec/error_resilience.c @@ -1200,7 +1200,7 @@ void ff_er_frame_end(ERContext *s) const int mb_xy = mb_x + mb_y * s->mb_stride; const int mb_type = s->cur_pic.mb_type[mb_xy]; - error = s->error_status_table[mb_xy]; + // error = s->error_status_table[mb_xy]; if (IS_INTRA(mb_type) && s->partitioned_frame) continue; |