Commit e3c25860 authored by Clément Bœsch's avatar Clément Bœsch

lavc/utils: reindent in avcodec_decode_subtitle2().

parent 9a742826
...@@ -1837,9 +1837,9 @@ int avcodec_decode_subtitle2(AVCodecContext *avctx, AVSubtitle *sub, ...@@ -1837,9 +1837,9 @@ int avcodec_decode_subtitle2(AVCodecContext *avctx, AVSubtitle *sub,
avctx->pkt = &tmp; avctx->pkt = &tmp;
if (avctx->pkt_timebase.den && avpkt->pts != AV_NOPTS_VALUE) if (avctx->pkt_timebase.den && avpkt->pts != AV_NOPTS_VALUE)
sub->pts = av_rescale_q(avpkt->pts, sub->pts = av_rescale_q(avpkt->pts,
avctx->pkt_timebase, AV_TIME_BASE_Q); avctx->pkt_timebase, AV_TIME_BASE_Q);
ret = avctx->codec->decode(avctx, sub, got_sub_ptr, &tmp); ret = avctx->codec->decode(avctx, sub, got_sub_ptr, &tmp);
avctx->pkt = NULL; avctx->pkt = NULL;
...@@ -1849,8 +1849,8 @@ int avcodec_decode_subtitle2(AVCodecContext *avctx, AVSubtitle *sub, ...@@ -1849,8 +1849,8 @@ int avcodec_decode_subtitle2(AVCodecContext *avctx, AVSubtitle *sub,
ret = avpkt->size; ret = avpkt->size;
} }
if (*got_sub_ptr) if (*got_sub_ptr)
avctx->frame_number++; avctx->frame_number++;
} }
return ret; return ret;
......
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