Changeset 4698
- Timestamp:
- 03/19/10 12:42:13 (3 years ago)
- Location:
- vic/branches/mpeg4
- Files:
-
- 2 modified
-
rtp/session.cpp (modified) (2 diffs)
-
tcl/cf-util.tcl (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
vic/branches/mpeg4/rtp/session.cpp
r4477 r4698 498 498 noteslot = RTCP_SDES_NAME; 499 499 } 500 500 501 u_int seq = (++sdes_seq_) & 0x7; 502 // if loc is set as a tcl resource, change to use 10 different packets 503 // with loc on the last even one 504 const char* loc = ls.sdes(RTCP_SDES_LOC); 505 if ( loc && *loc ) 506 seq = sdes_seq_ % 10; 507 501 508 switch (seq) { 502 509 … … 510 517 case 6: 511 518 p = build_sdes_item(p, RTCP_SDES_TOOL, ls); 519 break; 520 case 8: 521 p = build_sdes_item(p, RTCP_SDES_LOC, ls); 512 522 break; 513 523 default: -
vic/branches/mpeg4/tcl/cf-util.tcl
r4409 r4698 135 135 $src sdes note [resource rtpNote] 136 136 $src sdes cname $cname 137 $src sdes loc [resource loc] 137 138 set tool $V(app)-[version] 138 139 global tcl_platform
