summaryrefslogtreecommitdiff
path: root/softhddev.c
diff options
context:
space:
mode:
authorJohns <johns98@gmx.net>2013-01-23 21:54:56 +0100
committerJohns <johns98@gmx.net>2013-01-23 21:54:56 +0100
commit04286fb2ad742f33ce6abd055a108483d2a2d16c (patch)
tree8cc25e1741474e5697a1308802585d606164ef8b /softhddev.c
parentcd82ee8e4a01e29cc9aa616ba9a68c5c59e11d89 (diff)
downloadvdr-plugin-softhddevice-04286fb2ad742f33ce6abd055a108483d2a2d16c.tar.gz
vdr-plugin-softhddevice-04286fb2ad742f33ce6abd055a108483d2a2d16c.tar.bz2
Add video compatibility with >=ffmpeg 1.1.
Diffstat (limited to 'softhddev.c')
-rw-r--r--softhddev.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/softhddev.c b/softhddev.c
index 3d6f021..ef4064c 100644
--- a/softhddev.c
+++ b/softhddev.c
@@ -2033,6 +2033,7 @@ int PlayVideo3(VideoStream * stream, const uint8_t * data, int size)
stream->NewStream = 0;
}
// must be a PES start code
+ // FIXME: Valgrind-3.8.1 has a problem with this code
if (size < 9 || !data || data[0] || data[1] || data[2] != 0x01) {
Error(_("[softhddev] invalid PES video packet\n"));
return size;