summaryrefslogtreecommitdiff
path: root/patches/vdr-iframe.patch
diff options
context:
space:
mode:
authorscop <scop>2005-08-23 18:17:28 +0000
committerscop <scop>2005-08-23 18:17:28 +0000
commit696098d8344dc0f56530c2d9b2af07c9e9f33775 (patch)
treeb1266d1fd3109a2881f7a7482734581a8b224f36 /patches/vdr-iframe.patch
parentc0abdadd47309ce967d755b130ecbf2f47a1edf5 (diff)
downloadvdr-plugin-dxr3-696098d8344dc0f56530c2d9b2af07c9e9f33775.tar.gz
vdr-plugin-dxr3-696098d8344dc0f56530c2d9b2af07c9e9f33775.tar.bz2
Drop iframe patch, point to Nißl's one for old recordings.
Diffstat (limited to 'patches/vdr-iframe.patch')
-rw-r--r--patches/vdr-iframe.patch21
1 files changed, 0 insertions, 21 deletions
diff --git a/patches/vdr-iframe.patch b/patches/vdr-iframe.patch
deleted file mode 100644
index 0a9f7ce..0000000
--- a/patches/vdr-iframe.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-Workaround for I-frame display problems when cutting (still picture not
-updating) and/or fast forward/backward in some streams.
-Apply to: VDR sources
-More info: http://www.schluenss.de/history.html
-Probably a better fix than this one can be found at
- http://home.vr-web.de/~rnissl/vdr-1.3.28-dvbplayer.patch
-
-
---- recording.c.orig 2005-02-12 12:17:47.000000000 +0200
-+++ recording.c 2005-03-14 23:01:32.370785864 +0200
-@@ -1017,8 +1017,8 @@
- FileOffset = &index[Index].offset;
- if (Length) {
- // all recordings end with a non-I_FRAME, so the following should be safe:
-- int fn = index[Index + 1].number;
-- int fo = index[Index + 1].offset;
-+ int fn = index[Index + 2].number;
-+ int fo = index[Index + 2].offset;
- if (fn == *FileNumber)
- *Length = fo - *FileOffset;
- else {