[FFmpeg-cvslog] avformat: change seeking index consistency asserts to av_asserts
Michael Niedermayer
git at videolan.org
Fri Apr 19 18:07:09 CEST 2013
ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Fri Apr 19 17:30:13 2013 +0200| [833bc6678f7f300e4adc7182894ba3388bb2964c] | committer: Michael Niedermayer
avformat: change seeking index consistency asserts to av_asserts
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=833bc6678f7f300e4adc7182894ba3388bb2964c
---
libavformat/utils.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/libavformat/utils.c b/libavformat/utils.c
index b1acc3e..3267e52 100644
--- a/libavformat/utils.c
+++ b/libavformat/utils.c
@@ -1856,14 +1856,14 @@ int ff_seek_frame_binary(AVFormatContext *s, int stream_index, int64_t target_ts
av_dlog(s, "using cached pos_min=0x%"PRIx64" dts_min=%s\n",
pos_min, av_ts2str(ts_min));
}else{
- assert(index==0);
+ av_assert1(index==0);
}
index= av_index_search_timestamp(st, target_ts, flags & ~AVSEEK_FLAG_BACKWARD);
av_assert0(index < st->nb_index_entries);
if(index >= 0){
e= &st->index_entries[index];
- assert(e->timestamp >= target_ts);
+ av_assert1(e->timestamp >= target_ts);
pos_max= e->pos;
ts_max= e->timestamp;
pos_limit= pos_max - e->min_distance;
More information about the ffmpeg-cvslog
mailing list