Commit b82722df authored by Hendrik Leppkes's avatar Hendrik Leppkes Committed by Anton Khirnov

hevc: reindent after previous commit

Signed-off-by: 's avatarAnton Khirnov <anton@khirnov.net>
parent e72e8c5a
...@@ -2591,19 +2591,19 @@ static int decode_nal_unit(HEVCContext *s, const HEVCNAL *nal) ...@@ -2591,19 +2591,19 @@ static int decode_nal_unit(HEVCContext *s, const HEVCNAL *nal)
if (ret < 0) if (ret < 0)
goto fail; goto fail;
} else { } else {
ctb_addr_ts = hls_slice_data(s); ctb_addr_ts = hls_slice_data(s);
if (ctb_addr_ts >= (s->sps->ctb_width * s->sps->ctb_height)) { if (ctb_addr_ts >= (s->sps->ctb_width * s->sps->ctb_height)) {
s->is_decoded = 1; s->is_decoded = 1;
if ((s->pps->transquant_bypass_enable_flag || if ((s->pps->transquant_bypass_enable_flag ||
(s->sps->pcm.loop_filter_disable_flag && s->sps->pcm_enabled_flag)) && (s->sps->pcm.loop_filter_disable_flag && s->sps->pcm_enabled_flag)) &&
s->sps->sao_enabled) s->sps->sao_enabled)
restore_tqb_pixels(s); restore_tqb_pixels(s);
} }
if (ctb_addr_ts < 0) { if (ctb_addr_ts < 0) {
ret = ctb_addr_ts; ret = ctb_addr_ts;
goto fail; goto fail;
} }
} }
break; break;
case NAL_EOS_NUT: case NAL_EOS_NUT:
...@@ -2917,16 +2917,16 @@ static int hevc_decode_frame(AVCodecContext *avctx, void *data, int *got_output, ...@@ -2917,16 +2917,16 @@ static int hevc_decode_frame(AVCodecContext *avctx, void *data, int *got_output,
av_log(avctx, AV_LOG_ERROR, av_log(avctx, AV_LOG_ERROR,
"hardware accelerator failed to decode picture\n"); "hardware accelerator failed to decode picture\n");
} else { } else {
/* verify the SEI checksum */ /* verify the SEI checksum */
if (avctx->err_recognition & AV_EF_CRCCHECK && s->is_decoded && if (avctx->err_recognition & AV_EF_CRCCHECK && s->is_decoded &&
s->is_md5) { s->is_md5) {
ret = verify_md5(s, s->ref->frame); ret = verify_md5(s, s->ref->frame);
if (ret < 0 && avctx->err_recognition & AV_EF_EXPLODE) { if (ret < 0 && avctx->err_recognition & AV_EF_EXPLODE) {
ff_hevc_unref_frame(s, s->ref, ~0); ff_hevc_unref_frame(s, s->ref, ~0);
return ret; return ret;
}
} }
} }
}
s->is_md5 = 0; s->is_md5 = 0;
if (s->is_decoded) { if (s->is_decoded) {
......
...@@ -356,18 +356,18 @@ static HEVCFrame *generate_missing_ref(HEVCContext *s, int poc) ...@@ -356,18 +356,18 @@ static HEVCFrame *generate_missing_ref(HEVCContext *s, int poc)
return NULL; return NULL;
if (!s->avctx->hwaccel) { if (!s->avctx->hwaccel) {
if (!s->sps->pixel_shift) { if (!s->sps->pixel_shift) {
for (i = 0; frame->frame->buf[i]; i++) for (i = 0; frame->frame->buf[i]; i++)
memset(frame->frame->buf[i]->data, 1 << (s->sps->bit_depth - 1), memset(frame->frame->buf[i]->data, 1 << (s->sps->bit_depth - 1),
frame->frame->buf[i]->size); frame->frame->buf[i]->size);
} else { } else {
for (i = 0; frame->frame->data[i]; i++) for (i = 0; frame->frame->data[i]; i++)
for (y = 0; y < (s->sps->height >> s->sps->vshift[i]); y++) for (y = 0; y < (s->sps->height >> s->sps->vshift[i]); y++)
for (x = 0; x < (s->sps->width >> s->sps->hshift[i]); x++) { for (x = 0; x < (s->sps->width >> s->sps->hshift[i]); x++) {
AV_WN16(frame->frame->data[i] + y * frame->frame->linesize[i] + 2 * x, AV_WN16(frame->frame->data[i] + y * frame->frame->linesize[i] + 2 * x,
1 << (s->sps->bit_depth - 1)); 1 << (s->sps->bit_depth - 1));
} }
} }
} }
frame->poc = poc; frame->poc = poc;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment