diff options
author | Hendrik Leppkes <h.leppkes@gmail.com> | 2015-01-25 12:58:49 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2015-01-27 09:05:25 +0100 |
commit | b82722df9b2911bd41e0928db4804067b39e6528 (patch) | |
tree | 453cf430ed8df6ff9dd097a123188bac9084481c /libavcodec/hevc_refs.c | |
parent | e72e8c5a1df61447ac7af750531e96e8b62d02ba (diff) | |
download | ffmpeg-b82722df9b2911bd41e0928db4804067b39e6528.tar.gz |
hevc: reindent after previous commit
Signed-off-by: Anton Khirnov <anton@khirnov.net>
Diffstat (limited to 'libavcodec/hevc_refs.c')
-rw-r--r-- | libavcodec/hevc_refs.c | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/libavcodec/hevc_refs.c b/libavcodec/hevc_refs.c index 94bd0f48c8..f232d03020 100644 --- a/libavcodec/hevc_refs.c +++ b/libavcodec/hevc_refs.c @@ -356,18 +356,18 @@ static HEVCFrame *generate_missing_ref(HEVCContext *s, int poc) return NULL; if (!s->avctx->hwaccel) { - if (!s->sps->pixel_shift) { - for (i = 0; frame->frame->buf[i]; i++) - memset(frame->frame->buf[i]->data, 1 << (s->sps->bit_depth - 1), - frame->frame->buf[i]->size); - } else { - for (i = 0; frame->frame->data[i]; i++) - for (y = 0; y < (s->sps->height >> s->sps->vshift[i]); y++) - 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, - 1 << (s->sps->bit_depth - 1)); - } - } + if (!s->sps->pixel_shift) { + for (i = 0; frame->frame->buf[i]; i++) + memset(frame->frame->buf[i]->data, 1 << (s->sps->bit_depth - 1), + frame->frame->buf[i]->size); + } else { + for (i = 0; frame->frame->data[i]; i++) + for (y = 0; y < (s->sps->height >> s->sps->vshift[i]); y++) + 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, + 1 << (s->sps->bit_depth - 1)); + } + } } frame->poc = poc; |