summaryrefslogtreecommitdiffstats
path: root/contrib/ffmpeg/A04-mov-seek.patch
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/ffmpeg/A04-mov-seek.patch')
-rw-r--r--contrib/ffmpeg/A04-mov-seek.patch13
1 files changed, 0 insertions, 13 deletions
diff --git a/contrib/ffmpeg/A04-mov-seek.patch b/contrib/ffmpeg/A04-mov-seek.patch
deleted file mode 100644
index ecfff65ce..000000000
--- a/contrib/ffmpeg/A04-mov-seek.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-Index: libavformat/mov.c
-===================================================================
---- ffmpeg.orig/libavformat/mov.c (revision 22950)
-+++ ffmpeg/libavformat/mov.c (working copy)
-@@ -2466,6 +2466,8 @@
-
- sample = av_index_search_timestamp(st, timestamp, flags);
- dprintf(s, "stream %d, timestamp %"PRId64", sample %d\n", st->index, timestamp, sample);
-+ if (sample < 0 && st->nb_index_entries && timestamp < st->index_entries[0].timestamp)
-+ sample = 0;
- if (sample < 0) /* not sure what to do */
- return -1;
- sc->current_sample = sample;