vatrcvr.cc
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:9k
源码类别:

通讯编程

开发平台:

Visual C++

  1. /* -*- Mode:C++; c-basic-offset:8; tab-width:8; indent-tabs-mode:t -*- */
  2. /*
  3.  * Copyright (c) Xerox Corporation 1997. All rights reserved.
  4.  *
  5.  * This program is free software; you can redistribute it and/or modify it
  6.  * under the terms of the GNU General Public License as published by the
  7.  * Free Software Foundation; either version 2 of the License, or (at your
  8.  * option) any later version.
  9.  *
  10.  * This program is distributed in the hope that it will be useful, but
  11.  * WITHOUT ANY WARRANTY; without even the implied warranty of
  12.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  13.  * General Public License for more details.
  14.  *
  15.  * You should have received a copy of the GNU General Public License along
  16.  * with this program; if not, write to the Free Software Foundation, Inc.,
  17.  * 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
  18.  *
  19.  * Linking this file statically or dynamically with other modules is making
  20.  * a combined work based on this file.  Thus, the terms and conditions of
  21.  * the GNU General Public License cover the whole combination.
  22.  *
  23.  * In addition, as a special exception, the copyright holders of this file
  24.  * give you permission to combine this file with free software programs or
  25.  * libraries that are released under the GNU LGPL and with code included in
  26.  * the standard release of ns-2 under the Apache 2.0 license or under
  27.  * otherwise-compatible licenses with advertising requirements (or modified
  28.  * versions of such code, with unchanged license).  You may copy and
  29.  * distribute such a system following the terms of the GNU GPL for this
  30.  * file and the licenses of the other code concerned, provided that you
  31.  * include the source code of that other code when and as the GNU GPL
  32.  * requires distribution of source code.
  33.  *
  34.  * Note that people who make modified versions of this file are not
  35.  * obligated to grant this special exception for their modified versions;
  36.  * it is their choice whether to do so.  The GNU General Public License
  37.  * gives permission to release a modified version without this exception;
  38.  * this exception also makes it possible to release a modified version
  39.  * which carries forward this exception.
  40.  */
  41. /*
  42.  * Copyright (c) 1995 The Regents of the University of California.
  43.  * All rights reserved.
  44.  *
  45.  * Redistribution and use in source and binary forms, with or without
  46.  * modification, are permitted provided that the following conditions
  47.  * are met:
  48.  * 1. Redistributions of source code must retain the above copyright
  49.  *    notice, this list of conditions and the following disclaimer.
  50.  * 2. Redistributions in binary form must reproduce the above copyright
  51.  *    notice, this list of conditions and the following disclaimer in the
  52.  *    documentation and/or other materials provided with the distribution.
  53.  * 3. All advertising materials mentioning features or use of this software
  54.  *    must display the following acknowledgement:
  55.  *      This product includes software developed by the Network Research
  56.  *      Group at Lawrence Berkeley National Laboratory.
  57.  * 4. Neither the name of the University nor of the Laboratory may be used
  58.  *    to endorse or promote products derived from this software without
  59.  *    specific prior written permission.
  60.  *
  61.  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  62.  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  63.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  64. */
  65. #ifndef lint
  66. static const char  rcsid[] =
  67. "@(#) $Header: /cvsroot/nsnam/ns-2/apps/vatrcvr.cc,v 1.7 2005/08/26 05:05:28 tomh Exp $";
  68. #endif
  69. #ifndef WIN32
  70. #include <sys/time.h>
  71. #endif
  72. #include "agent.h"
  73. #include "rtp.h"
  74. #include "adaptive-receiver.h"
  75. #include "vat.h"
  76. //Most of this code is taken from the decoder.cc file of the publicly available
  77. //vat code with some minor midifications.
  78. class VatRcvr : public AdaptiveRcvr {
  79. public:
  80. VatRcvr();
  81. protected:
  82. int adapt(Packet *pkt, u_int32_t time);
  83. void count(int statno);
  84. u_int32_t hostoffset_;
  85. int32_t var_; //variance in  this host's interarrival time
  86. u_int32_t playout_; // playout delay (in media units)
  87. int maxdel_;
  88. int block_size_;
  89. int lecture_mode_;
  90. u_int32_t lastrecv_;
  91. u_int32_t predicted_drop_;
  92. int delvar_;
  93. /*XXX*/
  94. #define MAXSTAT 16
  95. struct statcntr {
  96. const char* name;
  97. u_int cnt;
  98. } stat_[MAXSTAT];
  99. int nstat_;
  100. };
  101. inline void VatRcvr::count(int statno)
  102. {
  103. ++stat_[statno].cnt;
  104. }
  105. inline int absdiff(int x, int y)
  106. {
  107. register int r = y - x;
  108. return (r < 0? -r : r);
  109. }
  110. static inline int newoffset(
  111. int nvar,
  112. int playout,
  113. int maxdel, int mindel, int lecture)
  114. {
  115. register int offset = nvar;
  116. if (offset > maxdel)
  117. offset = maxdel;
  118. register int diff = playout - offset;
  119. if (diff > 0) {
  120. // offset going down: in LectureMode, drop at most
  121. // one frametime per talkspurt.  In ConferenceMode,
  122. // drop at most 1/2 of difference.
  123. if (lecture) {
  124. if (diff > FRAMESIZE) {
  125. if (playout > (maxdel * 3) / 4 &&
  126.     diff > 10 * FRAMESIZE)
  127. diff = 5 * FRAMESIZE;
  128. else
  129. diff = FRAMESIZE;
  130. }
  131. } else
  132. diff >>= 1;
  133. offset = playout - diff;
  134. } else if (-diff > maxdel) {
  135. // offset going way up: only allow 3/4 of max.
  136. offset = (maxdel * 3) / 4;
  137. }
  138. if (offset > (maxdel * 7) / 8)
  139. offset = (maxdel * 7) / 8;
  140. else if (offset < mindel)
  141. offset = mindel;
  142. return (offset);
  143. }
  144. int VatRcvr::adapt(Packet *pkt, u_int32_t local_clock)
  145. {
  146. hdr_cmn* ch = hdr_cmn::access(pkt);
  147. register u_int32_t tstamp = (int)ch->timestamp();
  148. register int hoff = (int)hostoffset_;
  149. register int offset = (tstamp + hoff - local_clock) &~ 3;
  150. hdr_rtp *rh = hdr_rtp::access(pkt);
  151. int new_ts = rh->flags() & RTP_M ;
  152. //struct timeval tv;
  153. //static long int last;
  154. /*    printf("%1d %10d %10dn", new_ts ? 1: 0, tstamp, local_clock);*/
  155. /* printf("%un", tstamp); */
  156. //gettimeofday(&tv, NULL);
  157. //last = tv.tv_usec - last;
  158. //if (last < 0)
  159. // last += 1000000;
  160. /*
  161.   printf("%u %u %u ==> %dn", tstamp, hoff, local_clock, offset);
  162.   printf("%u %dn", tv.tv_usec, last);
  163.   */
  164. //last = tv.tv_usec;
  165. /* printf("%u ==> %dn", local_clock, offset); */
  166. if (hoff == 0 || new_ts) {
  167. /*  if (hoff == 0) {  */
  168. /* printf("TS: var = %d playback = %d", var_ >> (VAR_FILTER + 3), 
  169.    playout_ >> (PLAYO_FILTER + 3)); */
  170. /*
  171.  * start of new talk spurt --
  172.  * use accumulated variance to compute new offset if
  173.  * this would make a significant change.  We change if
  174.  *  - the variance is currently 'small', or
  175.  *  - the change would be a least a packet time
  176.  */
  177. register int nvar = var_ >> (VAR_FILTER - VAR_MULT);
  178. offset = playout_ >> PLAYO_FILTER;
  179. if (nvar < 3*FRAMESIZE || absdiff(nvar, offset) >= FRAMESIZE) {
  180. offset = newoffset(nvar, offset, maxdel_, 
  181.    block_size_, lecture_mode_);
  182. /*
  183.  * assume that a talk spurt starts with TALK_LEAD
  184.  * samples of history & subtract them off if possible.
  185.  */
  186. /* CHANGED THIS PART OF VAT CODE AS WELL */
  187. if (new_ts) {
  188. offset -= 4 * FRAMESIZE;
  189. if (offset < block_size_)
  190. offset = block_size_;
  191. }
  192. }
  193. hostoffset_ = local_clock - tstamp + offset;
  194. /* printf(" new playback = %dn", offset >> 3); */
  195. } else if (offset < 0 || offset > maxdel_) {
  196. /* printf("LP: late by %d var = %d playback = %d", (0 - (offset >> 3)), 
  197.    var_ >> (VAR_FILTER + 3), playout_ >> (PLAYO_FILTER + 3)); */
  198. /*
  199.  * packet out of range -- if last packet also out of
  200.  * range or if the delay would increase, resync.
  201.  */
  202. if (offset < 0 || predicted_drop_ == tstamp) {
  203. offset = newoffset(var_ >> (VAR_FILTER - VAR_MULT),
  204.    playout_ >> PLAYO_FILTER,
  205.    maxdel_, block_size_,
  206.    lecture_mode_);
  207. hostoffset_ = local_clock - tstamp + offset;
  208. } else {
  209. /* printf("late packetn"); */
  210. predicted_drop_ = tstamp + block_size_;
  211. lastrecv_ = tstamp - local_clock;
  212. count(STAT_LATE);
  213. return (-1);
  214. }
  215. /* printf(" new playback = %dn", offset >> 3); */
  216. } else {
  217. // packet in range, update interarrival var. est.
  218. register int nvar = var_;
  219. register int off = tstamp - local_clock - lastrecv_;
  220. /* printf("offset =  %3d", off >> 3);  */
  221. if (off < 0)
  222. off = -off;
  223. off -= (nvar >> VAR_FILTER);
  224. var_ = nvar + off;
  225. /* printf(" var =  %3d", var_ >> 8);  */
  226. }
  227. lastrecv_ = tstamp - local_clock;
  228. register u_int avgplay = playout_;
  229. playout_ = avgplay + (offset - (avgplay >> PLAYO_FILTER));
  230. /* printf(" offset = %3d avg playout = %3d", offset >> 3, playout_ >> 8);  */
  231. offset &= ~3;
  232. delvar_ = var_ >> VAR_FILTER;
  233. /* printf("n"); */
  234. return (offset);
  235. }
  236. static class VatRcvrClass : public TclClass {
  237. public:
  238. VatRcvrClass() : TclClass("Agent/VatRcvr") {}
  239. TclObject* create(int, const char*const*) {
  240. return (new VatRcvr());
  241. }
  242. } class_vat_rcvr;
  243. VatRcvr::VatRcvr() : 
  244. hostoffset_(0),
  245. var_(INITIAL_OFFSET << (VAR_FILTER - VAR_MULT)),
  246. playout_(INITIAL_OFFSET << PLAYO_FILTER),
  247. maxdel_(8000*6),
  248. block_size_(FRAMESIZE),
  249. lecture_mode_(0),
  250. lastrecv_(0),
  251. predicted_drop_(~0),
  252. nstat_(0)
  253. {
  254. for (int i = 0; i < MAXSTAT; ++i) {
  255. stat_[i].name = 0;
  256. stat_[i].cnt = 0;
  257. }
  258. stat_[STAT_LATE].name = "Late-Pkts";
  259. nstat_ = 1;
  260. }