diff options
author | Matthieu Bouron <matthieu.bouron@gmail.com> | 2017-01-20 17:29:09 +0100 |
---|---|---|
committer | Matthieu Bouron <matthieu.bouron@gmail.com> | 2017-01-20 17:29:09 +0100 |
commit | cf3affabb449671ce16cee61d98393c43ff171f4 (patch) | |
tree | cff7aebc667828748fbf209022eb0e1da1f37999 /libavcodec/h264dec.c | |
parent | 639e26297147866534c093fd39f89fe386d81ebd (diff) | |
download | ffmpeg-cf3affabb449671ce16cee61d98393c43ff171f4.tar.gz |
lavc/h264dec: re-indent after previous commit
Diffstat (limited to 'libavcodec/h264dec.c')
-rw-r--r-- | libavcodec/h264dec.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libavcodec/h264dec.c b/libavcodec/h264dec.c index f18fb0b765..665d3e46a5 100644 --- a/libavcodec/h264dec.c +++ b/libavcodec/h264dec.c @@ -680,11 +680,11 @@ again: break; if (h->current_slice == 1) { - if (avctx->active_thread_type & FF_THREAD_FRAME && !h->avctx->hwaccel && - i >= nals_needed && !h->setup_finished && h->cur_pic_ptr) { - ff_thread_finish_setup(avctx); - h->setup_finished = 1; - } + if (avctx->active_thread_type & FF_THREAD_FRAME && !h->avctx->hwaccel && + i >= nals_needed && !h->setup_finished && h->cur_pic_ptr) { + ff_thread_finish_setup(avctx); + h->setup_finished = 1; + } if (h->avctx->hwaccel && (ret = h->avctx->hwaccel->start_frame(h->avctx, buf, buf_size)) < 0) |