Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthieu Bouron <matthieu.bouron@gmail.com>2017-01-20 19:29:09 +0300
committerMatthieu Bouron <matthieu.bouron@gmail.com>2017-01-20 19:29:09 +0300
commitcf3affabb449671ce16cee61d98393c43ff171f4 (patch)
treecff7aebc667828748fbf209022eb0e1da1f37999
parent639e26297147866534c093fd39f89fe386d81ebd (diff)
lavc/h264dec: re-indent after previous commit
-rw-r--r--libavcodec/h264dec.c10
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)