From 6c0cf11f38f3306773401bf35174703cb4f12dd5 Mon Sep 17 00:00:00 2001 From: Clément Bœsch Date: Sun, 20 Mar 2016 19:28:07 +0100 Subject: lavf/dv: reindent after previous commit --- libavformat/dv.c | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/libavformat/dv.c b/libavformat/dv.c index b1f8759dbe..890f124668 100644 --- a/libavformat/dv.c +++ b/libavformat/dv.c @@ -285,21 +285,21 @@ static int dv_extract_video_info(DVDemuxContext *c, const uint8_t *frame) AVCodecContext *avctx; int apt, is16_9; - avctx = c->vst->codec; - - avpriv_set_pts_info(c->vst, 64, c->sys->time_base.num, - c->sys->time_base.den); - c->vst->avg_frame_rate = av_inv_q(c->vst->time_base); - - /* finding out SAR is a little bit messy */ - vsc_pack = dv_extract_pack(frame, dv_video_control); - apt = frame[4] & 0x07; - is16_9 = (vsc_pack && ((vsc_pack[2] & 0x07) == 0x02 || - (!apt && (vsc_pack[2] & 0x07) == 0x07))); - c->vst->sample_aspect_ratio = c->sys->sar[is16_9]; - avctx->bit_rate = av_rescale_q(c->sys->frame_size, - (AVRational) { 8, 1 }, - c->sys->time_base); + avctx = c->vst->codec; + + avpriv_set_pts_info(c->vst, 64, c->sys->time_base.num, + c->sys->time_base.den); + c->vst->avg_frame_rate = av_inv_q(c->vst->time_base); + + /* finding out SAR is a little bit messy */ + vsc_pack = dv_extract_pack(frame, dv_video_control); + apt = frame[4] & 0x07; + is16_9 = (vsc_pack && ((vsc_pack[2] & 0x07) == 0x02 || + (!apt && (vsc_pack[2] & 0x07) == 0x07))); + c->vst->sample_aspect_ratio = c->sys->sar[is16_9]; + avctx->bit_rate = av_rescale_q(c->sys->frame_size, + (AVRational) { 8, 1 }, + c->sys->time_base); return c->sys->frame_size; } -- cgit v1.2.3