aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2017-12-08 10:59:05 +0100
committerMichael Niedermayer <michael@niedermayer.cc>2017-12-10 20:25:14 +0100
commitc5fd23879ac28122b4ea6adf188f4c82a4f3731e (patch)
tree0c4c741228bd899917bec43171111a47c5238418
parentd8d1689f929ca05a86300bc6e5d703961a567ae9 (diff)
downloadffmpeg-c5fd23879ac28122b4ea6adf188f4c82a4f3731e.tar.gz
avformat/utils: Fix warning: ISO C90 forbids mixed declarations and code
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-rw-r--r--libavformat/utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/utils.c b/libavformat/utils.c
index b727f3d3be..93722e34b9 100644
--- a/libavformat/utils.c
+++ b/libavformat/utils.c
@@ -1735,10 +1735,10 @@ int av_read_frame(AVFormatContext *s, AVPacket *pkt)
if (next_pkt->dts != AV_NOPTS_VALUE) {
int wrap_bits = s->streams[next_pkt->stream_index]->pts_wrap_bits;
- av_assert2(wrap_bits <= 64);
// last dts seen for this stream. if any of packets following
// current one had no dts, we will set this to AV_NOPTS_VALUE.
int64_t last_dts = next_pkt->dts;
+ av_assert2(wrap_bits <= 64);
while (pktl && next_pkt->pts == AV_NOPTS_VALUE) {
if (pktl->pkt.stream_index == next_pkt->stream_index &&
av_compare_mod(next_pkt->dts, pktl->pkt.dts, 2ULL << (wrap_bits - 1)) < 0) {