aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/hevc.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-10-27 22:22:23 +0100
committerMichael Niedermayer <michaelni@gmx.at>2013-10-27 22:31:04 +0100
commit758b6d39f685a510f48ff9e4c05fffa859d23c42 (patch)
treee5043e727d0ec9bb2d0700ee350ce3749bf4a657 /libavcodec/hevc.c
parent69d39cb90c24264e23ac05e7a42cd7657e7c6785 (diff)
downloadandroid_external_ffmpeg-758b6d39f685a510f48ff9e4c05fffa859d23c42.tar.gz
android_external_ffmpeg-758b6d39f685a510f48ff9e4c05fffa859d23c42.tar.bz2
android_external_ffmpeg-758b6d39f685a510f48ff9e4c05fffa859d23c42.zip
avcodec/hevc: calculate checksum only if AV_EF_EXPLODE is set
This avoids a slowdown with the default of enabled CRC checks Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/hevc.c')
-rw-r--r--libavcodec/hevc.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/hevc.c b/libavcodec/hevc.c
index 47f3a0908e..6e9c2eae99 100644
--- a/libavcodec/hevc.c
+++ b/libavcodec/hevc.c
@@ -2504,9 +2504,10 @@ static int hevc_decode_frame(AVCodecContext *avctx, void *data, int *got_output,
/* verify the SEI checksum */
if (avctx->err_recognition & AV_EF_CRCCHECK && s->is_decoded &&
+ avctx->err_recognition & AV_EF_EXPLODE &&
s->is_md5) {
ret = verify_md5(s, s->ref->frame);
- if (ret < 0 && avctx->err_recognition & AV_EF_EXPLODE) {
+ if (ret < 0) {
ff_hevc_unref_frame(s, s->ref, ~0);
return ret;
}