summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClément Bœsch <u@pkh.me>2016-03-20 19:28:07 +0100
committerClément Bœsch <u@pkh.me>2016-03-20 19:28:15 +0100
commit6c0cf11f38f3306773401bf35174703cb4f12dd5 (patch)
treeaf3b2bc148923dff60e78dae8e5480edbdafbe7c
parent35ba5c424bbecea632c7cce0c9cae51190478068 (diff)
lavf/dv: reindent after previous commit
-rw-r--r--libavformat/dv.c30
1 files 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;
}