aboutsummaryrefslogtreecommitdiffstats
path: root/libavformat
diff options
context:
space:
mode:
authorelupus <elupus@ecce.se>2008-08-27 20:07:51 +0200
committerMichael Niedermayer <michaelni@gmx.at>2011-09-14 17:10:40 +0200
commit0a90b6a43e76aec8031b6c8a46bba2bf6cd25fa7 (patch)
treea3630a0ae8aa3d9badaaca3f43f8fd11bc905888 /libavformat
parent880e83827f47f638596cf60681ee1dfa89535c75 (diff)
downloadffmpeg-0a90b6a43e76aec8031b6c8a46bba2bf6cd25fa7.tar.gz
check return value of url_fseek in mpegts_get_pcr
Diffstat (limited to 'libavformat')
-rw-r--r--libavformat/mpegts.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libavformat/mpegts.c b/libavformat/mpegts.c
index 34f1c967b3..011868e059 100644
--- a/libavformat/mpegts.c
+++ b/libavformat/mpegts.c
@@ -1720,7 +1720,8 @@ static int64_t mpegts_get_pcr(AVFormatContext *s, int stream_index,
int pcr_l, pcr_pid = ((PESContext*)s->streams[stream_index]->priv_data)->pcr_pid;
pos = ((*ppos + ts->raw_packet_size - 1 - ts->pos47) / ts->raw_packet_size) * ts->raw_packet_size + ts->pos47;
while(pos < pos_limit) {
- avio_seek(s->pb, pos, SEEK_SET);
+ if (avio_seek(s->pb, pos, SEEK_SET) < 0)
+ return AV_NOPTS_VALUE;
if (avio_read(s->pb, buf, TS_PACKET_SIZE) != TS_PACKET_SIZE)
return AV_NOPTS_VALUE;
if ((pcr_pid < 0 || (AV_RB16(buf + 1) & 0x1fff) == pcr_pid) &&