<html>
<head>
<meta content="text/html; charset=ISO-8859-1"
http-equiv="Content-Type">
</head>
<body text="#000000" bgcolor="#FFFFFF">
I check svn journal. Changing<br>
<br>
m_encoder.SetMaxRTPFrameSize(std::min(m_maxRTPSize, m_maxNALUSize));<br>
<br>
to<br>
<br>
m_encoder.SetMaxRTPPayloadSize(std::min(m_maxRTPSize-PluginCodec_RTP_MinHeaderSize,
m_maxNALUSize));<br>
<br>
makes no impact because m_maxRTPSize (1444). Minus RTP header it is
going to be 1432. So minimum still will be m_maxNALUSize (1400). <br>
Main cause is "rtpSize = 1400;" inside h264_helper.cxx main
function. And this line was <br>
initially proposed by me (takes me a lot time to realize it probably
have something to do with me), but value I propose for that
workaround is just to small. We should increase this constant up to
1412 or even 1444. It's up to your decision Robert. <br>
<br>
<br>
16.01.2012 3:42, Robert Jongbloed пишет:
<blockquote
cite="mid:F1DBCE6C-8EA5-4D69-B825-E7B6AC3214E6@voxlucida.com.au"
type="cite">If you look at what I just checked in, the maximum
size of the RTP structure should now be 1412, not 1400. I renamed
some variable to make it clear that we are talking about the max
PAYLOAD size at every stage.
<div><br>
</div>
<div>Have you tried the latest version yet?<br>
<div>
<span class="Apple-style-span" style="border-collapse:
separate; color: rgb(0, 0, 0); font-family: Helvetica;
font-size: medium; font-style: normal; font-variant: normal;
font-weight: normal; letter-spacing: normal; line-height:
normal; orphans: 2; text-align: auto; text-indent: 0px;
text-transform: none; white-space: normal; widows: 2;
word-spacing: 0px; -webkit-border-horizontal-spacing: 0px;
-webkit-border-vertical-spacing: 0px;
-webkit-text-decorations-in-effect: none;
-webkit-text-size-adjust: auto; -webkit-text-stroke-width:
0px; "><span class="Apple-style-span"
style="border-collapse: separate; color: rgb(0, 0, 0);
font-family: Helvetica; font-size: medium; font-style:
normal; font-variant: normal; font-weight: normal;
letter-spacing: normal; line-height: normal; orphans: 2;
text-indent: 0px; text-transform: none; white-space:
normal; widows: 2; word-spacing: 0px;
-webkit-border-horizontal-spacing: 0px;
-webkit-border-vertical-spacing: 0px;
-webkit-text-decorations-in-effect: none;
-webkit-text-size-adjust: auto; -webkit-text-stroke-width:
0px; ">
<div style="word-wrap: break-word; -webkit-nbsp-mode:
space; -webkit-line-break: after-white-space; ">
<div><br class="Apple-interchange-newline">
--------</div>
<div>Robert Jongbloed</div>
<div>Vox Lucida Pty. Ltd.</div>
<div><br>
</div>
</div>
</span></span><br>
</div>
</div>
</blockquote>
<br>
</body>
</html>