Mercurial > libavformat.hg
changeset 2034:355147fa5c72 libavformat
dont assert(0) due to buggy rm demuxer
author | michael |
---|---|
date | Sun, 22 Apr 2007 18:48:07 +0000 |
parents | 1f882c0d0b79 |
children | 43de2eae6c69 |
files | utils.c |
diffstat | 1 files changed, 4 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/utils.c Sun Apr 22 16:23:44 2007 +0000 +++ b/utils.c Sun Apr 22 18:48:07 2007 +0000 @@ -1217,6 +1217,10 @@ #ifdef DEBUG_SEEK av_log(s, AV_LOG_DEBUG, "%"PRId64" %"PRId64" %"PRId64" / %"PRId64" %"PRId64" %"PRId64" target:%"PRId64" limit:%"PRId64" start:%"PRId64" noc:%d\n", pos_min, pos, pos_max, ts_min, ts, ts_max, target_ts, pos_limit, start_pos, no_change); #endif + if(ts == AV_NOPTS_VALUE){ + av_log(s, AV_LOG_ERROR, "read_timestamp() failed in the middle\n"); + return -1; + } assert(ts != AV_NOPTS_VALUE); if (target_ts <= ts) { pos_limit = start_pos - 1;