summaryrefslogtreecommitdiff
path: root/ffmpeg.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2005-01-29 02:27:33 +0000
committerMichael Niedermayer <michaelni@gmx.at>2005-01-29 02:27:33 +0000
commita603bf8d68b8700faa0008af09ccb653082f89de (patch)
tree728ac79c706eb2eadf068440e4e661209b78e95e /ffmpeg.c
parentbf1f4da01f9005d8a31b2761233fd99ea17c52a2 (diff)
dont predict missing timestamps if we lack the required information to do so
Originally committed as revision 3898 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'ffmpeg.c')
-rw-r--r--ffmpeg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ffmpeg.c b/ffmpeg.c
index dc61d6a255..d92ac50714 100644
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -1115,7 +1115,7 @@ static int output_packet(AVInputStream *ist, int ist_index,
} else if (pkt->dts != AV_NOPTS_VALUE) { //FIXME seems redundant, as libavformat does this too
ist->next_pts = ist->pts = pkt->dts;
} else {
- assert(ist->pts == ist->next_pts);
+// assert(ist->pts == ist->next_pts);
}
if (pkt == NULL) {