projects
/
vompclient.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3dcf1a4
)
TS demuxer bug fixes
author
Mark Calderbank
<mark@vomp.tv>
Sun, 25 Nov 2007 12:14:50 +0000
(12:14 +0000)
committer
Mark Calderbank
<mark@vomp.tv>
Sun, 25 Nov 2007 12:14:50 +0000
(12:14 +0000)
demuxerts.cc
patch
|
blob
|
history
diff --git
a/demuxerts.cc
b/demuxerts.cc
index f06727b422f1b6569ba345ac3be1c6ae2e835d6b..c0d36fb721297c813bb1fd87f85f4159b3f08fae 100644
(file)
--- a/
demuxerts.cc
+++ b/
demuxerts.cc
@@
-128,7
+128,7
@@
int DemuxerTS::put(UCHAR* buf, int len)
}
// Position ourselves at a candidate TS packet
- while (
*buf != TS_SIG && len
)
+ while (
len > 0 && *buf != TS_SIG
)
{
Log::getInstance()->log("TS Demuxer", Log::ERR, "TS Misaligned!");
buf++; ret++; len--;
@@
-146,7
+146,8
@@
int DemuxerTS::put(UCHAR* buf, int len)
if (buf[TS_SIZE] != TS_SIG)
{ // Not terminated correctly.
- while (*buf != TS_SIG && len)
+ buf++; ret++; len--;
+ while (len > 0 && *buf != TS_SIG)
{
buf++; ret++; len--;
}