summaryrefslogtreecommitdiff
path: root/libavcodec/mpegvideo.c
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2021-12-23 03:37:12 +0100
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-01-04 16:28:55 +0100
commit22ef01f5e142ffc38d4365b284cba5747a2d9982 (patch)
tree7cc2b5fef20737055fc91b39bd5fe4364679f6bc /libavcodec/mpegvideo.c
parent5d856ef476f0fdb06e54c71c43a79d26b3d213f9 (diff)
downloadffmpeg-22ef01f5e142ffc38d4365b284cba5747a2d9982.tar.gz
avcodec/mpegvideo: Avoid needlessly calling function
The very first check in this if-else if-else if construct is "if (s->encoding ||", i.e. in case of the WMV2 encoder the else branches are never executed. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec/mpegvideo.c')
-rw-r--r--libavcodec/mpegvideo.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/libavcodec/mpegvideo.c b/libavcodec/mpegvideo.c
index a0d05f8b46..5e87a41f52 100644
--- a/libavcodec/mpegvideo.c
+++ b/libavcodec/mpegvideo.c
@@ -2122,8 +2122,7 @@ void mpv_reconstruct_mb_internal(MpegEncContext *s, int16_t block[12][64],
}
}
}//fi gray
- }
- else if (CONFIG_WMV2_DECODER || CONFIG_WMV2_ENCODER) {
+ } else if (CONFIG_WMV2_DECODER) {
ff_wmv2_add_mb(s, block, dest_y, dest_cb, dest_cr);
}
} else {