[FFmpeg-devel] [PATCH 29/30] avcodec/mpegvideo: Remove always-true branch

Andreas Rheinhardt andreas.rheinhardt at outlook.com
Thu Dec 23 11:13:39 EET 2021


Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt at outlook.com>
---
 libavcodec/mpegvideo.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/libavcodec/mpegvideo.c b/libavcodec/mpegvideo.c
index 73b91b459c..7626f97be5 100644
--- a/libavcodec/mpegvideo.c
+++ b/libavcodec/mpegvideo.c
@@ -2166,10 +2166,11 @@ void mpv_reconstruct_mb_internal(MpegEncContext *s, int16_t block[12][64],
                             dest_pcm[i] += linesize[i] / 2;
                         }
                     }
-                } else if(s->dpcm_direction == -1) {
+                } else {
                     int i, w, h;
                     uint16_t *dest_pcm[3] = {(uint16_t*)dest_y, (uint16_t*)dest_cb, (uint16_t*)dest_cr};
                     int linesize[3] = {dct_linesize, uvlinesize, uvlinesize};
+                    av_assert2(s->dpcm_direction == -1);
                     for(i = 0; i < 3; i++) {
                         int idx = 0;
                         int vsub = i ? s->chroma_y_shift : 0;
-- 
2.32.0



More information about the ffmpeg-devel mailing list