diff options
author | Johns <johns98@gmx.net> | 2013-01-23 21:54:56 +0100 |
---|---|---|
committer | Johns <johns98@gmx.net> | 2013-01-23 21:54:56 +0100 |
commit | 04286fb2ad742f33ce6abd055a108483d2a2d16c (patch) | |
tree | 8cc25e1741474e5697a1308802585d606164ef8b /softhddev.c | |
parent | cd82ee8e4a01e29cc9aa616ba9a68c5c59e11d89 (diff) | |
download | vdr-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.c | 1 |
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; |