diff options
author | lordjaxom <lordjaxom> | 2005-02-08 13:59:16 +0000 |
---|---|---|
committer | lordjaxom <lordjaxom> | 2005-02-08 13:59:16 +0000 |
commit | 8e4556b0a982dab75d8ba3bb388965ecf47fa0b0 (patch) | |
tree | cda6583f76af5967c634fffe454b003052baf521 /remux | |
parent | 04a5985dcc0a24a1ff7b8debd5e88d4de46bb989 (diff) | |
download | vdr-plugin-streamdev-8e4556b0a982dab75d8ba3bb388965ecf47fa0b0.tar.gz vdr-plugin-streamdev-8e4556b0a982dab75d8ba3bb388965ecf47fa0b0.tar.bz2 |
- first adoptions (transfer-commit)
Diffstat (limited to 'remux')
-rw-r--r-- | remux/tsremux.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/remux/tsremux.c b/remux/tsremux.c index 93f513b..665c8ff 100644 --- a/remux/tsremux.c +++ b/remux/tsremux.c @@ -80,7 +80,7 @@ uchar *cTSRemux::Process(const uchar *Data, int &Count, int &Result) { // Check for frame borders: - if (m_ResultCount >= MINVIDEODATA) { + if (m_ResultCount > 0) { for (int i = 0; i < m_ResultCount; i++) { if (m_ResultBuffer[i] == 0 && m_ResultBuffer[i + 1] == 0 && m_ResultBuffer[i + 2] == 1) { switch (m_ResultBuffer[i + 3]) { |