[FFmpeg-cvslog] r14489 - trunk/libavformat/utils.c
bcoudurier
subversion
Thu Jul 31 20:02:55 CEST 2008
Author: bcoudurier
Date: Thu Jul 31 20:02:55 2008
New Revision: 14489
Log:
check url_fseek return value, update seek reg tests
Modified:
trunk/libavformat/utils.c
Modified: trunk/libavformat/utils.c
==============================================================================
--- trunk/libavformat/utils.c (original)
+++ trunk/libavformat/utils.c Thu Jul 31 20:02:55 2008
@@ -1430,7 +1430,7 @@ static int av_seek_frame_byte(AVFormatCo
static int av_seek_frame_generic(AVFormatContext *s,
int stream_index, int64_t timestamp, int flags)
{
- int index;
+ int index, ret;
AVStream *st;
AVIndexEntry *ie;
@@ -1445,11 +1445,13 @@ static int av_seek_frame_generic(AVForma
if(st->nb_index_entries){
assert(st->index_entries);
ie= &st->index_entries[st->nb_index_entries-1];
- url_fseek(s->pb, ie->pos, SEEK_SET);
+ if ((ret = url_fseek(s->pb, ie->pos, SEEK_SET)) < 0)
+ return ret;
av_update_cur_dts(s, st, ie->timestamp);
- }else
- url_fseek(s->pb, 0, SEEK_SET);
-
+ }else{
+ if ((ret = url_fseek(s->pb, 0, SEEK_SET)) < 0)
+ return ret;
+ }
for(i=0;; i++) {
int ret = av_read_frame(s, &pkt);
if(ret<0)
@@ -1471,8 +1473,8 @@ static int av_seek_frame_generic(AVForma
return 0;
}
ie = &st->index_entries[index];
- url_fseek(s->pb, ie->pos, SEEK_SET);
-
+ if ((ret = url_fseek(s->pb, ie->pos, SEEK_SET)) < 0)
+ return ret;
av_update_cur_dts(s, st, ie->timestamp);
return 0;
More information about the ffmpeg-cvslog
mailing list