Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2017-11-24 23:46:16 +0300
committerJames Almer <jamrial@gmail.com>2017-11-24 23:46:16 +0300
commit31de45d20b1ff90d4baf7c5a65e88f582efdb2a6 (patch)
treeeefead4c36b5b1b408c0069504c0588778193ca9
parent4186a77f26a82b4e15109d3286d6de98c2cfe7b6 (diff)
avformat/utils: fix mixed declarations and code
Signed-off-by: James Almer <jamrial@gmail.com>
-rw-r--r--libavformat/utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/utils.c b/libavformat/utils.c
index e9ac89935c..84e49208b8 100644
--- a/libavformat/utils.c
+++ b/libavformat/utils.c
@@ -1734,10 +1734,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) {