summaryrefslogtreecommitdiff
path: root/libavformat
diff options
context:
space:
mode:
authorChris Miceli <chris@miceli.net.au>2020-10-13 15:59:06 +1100
committerMichael Niedermayer <michael@niedermayer.cc>2020-10-20 15:33:13 +0200
commitbe852803eb3b5628a45f91d298c924be038c2ff7 (patch)
tree517ad9fc39d276533cb0938d995d22f6cf626a23 /libavformat
parent4ebe40ef6418995a888094f680eb2313850618d4 (diff)
libavformat/utils: Fix misleading indent
6f69f7a8bf6a0d013985578df2ef42ee6b1c7994 introduced this and it was part of a very large merging of refactoring. Current behaviour is what is reflected by this indenting change, however my understanding of timing is such that this correct behaviour. Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavformat')
-rw-r--r--libavformat/utils.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/libavformat/utils.c b/libavformat/utils.c
index a2e701ea1a..e8335a601f 100644
--- a/libavformat/utils.c
+++ b/libavformat/utils.c
@@ -1186,8 +1186,7 @@ static void update_initial_durations(AVFormatContext *s, AVStream *st,
pktl->pkt.dts = cur_dts;
if (!st->internal->avctx->has_b_frames)
pktl->pkt.pts = cur_dts;
-// if (st->codecpar->codec_type != AVMEDIA_TYPE_AUDIO)
- pktl->pkt.duration = duration;
+ pktl->pkt.duration = duration;
} else
break;
cur_dts = pktl->pkt.dts + pktl->pkt.duration;