summaryrefslogtreecommitdiffstats
path: root/libavformat/mpc.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-08-27 05:01:51 +0200
committerMichael Niedermayer <michaelni@gmx.at>2012-08-27 05:23:42 +0200
commit4e8b20609201161c81e047e1c4eec30a26952dfd (patch)
tree6dc56771d78a8e9deec558199903e92643a92f20 /libavformat/mpc.c
parenta503afb11f80facc0fa12b733c5c58989950b108 (diff)
downloadffmpeg-streaming-4e8b20609201161c81e047e1c4eec30a26952dfd.zip
ffmpeg-streaming-4e8b20609201161c81e047e1c4eec30a26952dfd.tar.gz
mpc: fix seeking to the end
Fixes Ticket1689 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/mpc.c')
-rw-r--r--libavformat/mpc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/mpc.c b/libavformat/mpc.c
index 2ca8dfa..3b818ed 100644
--- a/libavformat/mpc.c
+++ b/libavformat/mpc.c
@@ -198,7 +198,7 @@ static int mpc_read_seek(AVFormatContext *s, int stream_index, int64_t timestamp
uint32_t lastframe;
/* if found, seek there */
- if (index >= 0){
+ if (index >= 0 && st->index_entries[st->nb_index_entries-1].timestamp >= timestamp - DELAY_FRAMES){
c->curframe = st->index_entries[index].pos;
return 0;
}
OpenPOWER on IntegriCloud