Interactive pdf video not working on browser?

Dear Sir,
How we can embed the video inside pdf. I have done it from Multimedia/flash tool/ place video/ advance options/ It is working on my computer only but when i upload it on Issuu website for the client, it is not working???

Make shure that the client views this PDF with Adobe Reader and Acrobat only, all other viewers and plugins will not support it.
Make sure that your client has Reader 9 or X, and Acrobat 9 or X installed, with all other versions it will not work. If your client has version XI installed he will need Adobe Flash Player installed without it will not work. With Acrobat/Reader 8 or older he is out of luck.

Similar Messages

  • Interactive PDF form not working in webbrowser

    hi ,
    I created an interactive pdf document using Adobe InDesign CS6, before its links were not working from the master page, then i put links with via bookmarks.
    Now another problem created, i upload this file and when i open on web browser, its links do not work and there is also a problem for logo , its show bad color of logo.
    Anybody knows this solution ???
    Thanks

    If the PDF will be viewed in a browser, you will need to use a navigation method other than bookmarks, they do work in browsers w-PDF plugin. You can use links such as text anchors, page destinations and shared destinations.
    As for the bad color issue, this can be many things, PDF export setting used, transparency on page or image, colorspace conversion, etc. and more details will be needed.

  • Help! InDesign interactive PDF buttons not working in Safari or on iPad

    I made an infographic in Indesign for our university magazine with a QR code to link to an interactive pdf. Nothing too complicated animation wise, simply buttons that you can click on to view different parts of the graphic. However, the buttons are not working at all in Safari and on the iPhone and iPad, the buttons disapear completley. Please help.
    http://bit.ly/yrTN4R?r=qr
    Thanks,
    Gretchen

    Whether buttons work correctly in a PDF file depend entirely on what PDF reader you're using. Here are a couple of important facts:
    * While corrected created interactive PDFs will display correctly in the FREE Adobe Reader and Adobe Acrobat, they probably won't display correctly in Apple's Preview application which is probably what you're viewing in Safari.
    * None of the PDF readers currently available on an iPad (e.g., iBooks, GoodReader, etc.) correctly handle interactivity like buttons on an iPad.

  • Interactive .pdf form not working

    After converting an Acrobat 6.0 document with LiveCycle Designer, it still does not allow any input to the text fields or printing the document or sending it by email. Can anyone please guide me in the right direction? http://www.naturewisetv.org/survey.htm. Also, since it was created in Acrobat 6.0, how do I remove the alert messages that it needs a newer version of Acrobat?
    Thanks in advance,
    [email protected]

    Don't view the document in PDF/A mode.
    Do view this LiveCycle Designer created form you need at least Adobe Reader 7..

  • Calculate function in interactive pdf form not working

    I've created a simple form with a calculation (add), it worked fine first time around. Second time, I go to Calculate > Pick...; I select which three fields to add, the checkmark appears in the boxes, but then when I hit "Okay", nothing appears in the "Value is..." box. Driving me crazy.

    So I turned on the JS console (after looking up what that meant) and then opened up some sort of debugging window and now it worked. Thank you for making the suggestion! : ) happy now.

  • Button not working in browser

    I am coding a video player in Netbeans 6.8. just find two problems:
    1. the browser button not working in browser when I run the project from Netbeans under "run in browser" mode. however under "standard execution" mode, everything is fine.
    2. can not run the jar file in the project's dist directory directly. in other word, I can not run the jar file outside of Netbeans.
    I appreciate any help. thanks.
    Main.fx:
    package gui;
    import javafx.stage.Stage;
    import javafx.scene.Scene;
    import javafx.scene.paint.Color.*;
    * @author Jethro
    var face=Face{};
    function run(){
        Stage{
            title: "player"
            resizable:false
            scene: Scene{
                width:800
                height:600
                fill:DARKBLUE
                content: [face]
    }Face.fx:
    package gui;
    import javafx.scene.CustomNode;
    import javafx.scene.Group;
    import javafx.scene.Node;
    import javafx.scene.control.Button;
    import javafx.scene.layout.VBox;
    import javafx.scene.media.Media;
    import javafx.scene.media.MediaPlayer;
    import javafx.scene.media.MediaError;
    import javafx.scene.input.MouseEvent;
    import javafx.scene.media.MediaView;
    import javafx.scene.control.ProgressBar;
    * @author Jethro
    public class Face extends CustomNode {
        public var lbf=LBF{};
        public var enable=true;
        public var mark="play";
        public var sourceOfMedia:String;
        public def player=MediaPlayer {
            repeatCount:MediaPlayer.REPEAT_FOREVER
            onError:function(e:MediaError){
                var er=e.message;
         media : bind Media {
              source: sourceOfMedia
        public def view=MediaView {
                mediaPlayer:bind player
                preserveRatio: true                    
        public def bar=ProgressBar {
                height:10
                width:bind scene.width
                progress: bind
                    if(player.media !=null){
                        player.currentTime.toMillis()
                            /player.media.duration.toMillis();
                    }else{
                        0.0
        public var play=Button {      
            onMousePressed:function(e:MouseEvent){
                if(enable and player.media != null){
                            mark="pause"; println("playing...");                       
                            sourceOfMedia=lbf.uri;
                            player.play();
                            enable=false;
                }else{
                    mark="play";
                    player.pause();println("paused...");
                    enable=true;
         text: bind mark       
        public override function create(): Node {
            return Group {
                content: [
                    VBox{
                        content: [
                            lbf,
                            bar,
                            play,
                            view,
    }LBF.fx:
    package gui;
    import javafx.scene.CustomNode;
    import javafx.scene.Group;
    import javafx.scene.control.TextBox;
    import javafx.scene.layout.HBox;
    import javafx.scene.paint.Color;
    import javafx.scene.shape.Rectangle;
    import javafx.scene.text.Font;
    import javafx.scene.text.Text;
    import javafx.scene.Node;
    import javafx.geometry.HPos;
    import javafx.geometry.VPos;
    import javafx.scene.control.Button;
    import javax.swing.JFileChooser;
    * @author Jethro
    public class LBF extends CustomNode{
        public var uri:String;
        public var whereis=Text {
            fill:Color.BLUE
         font : Font {
              size: 20
         x: 10, y: 30
         content: "location: "
        public var location=TextBox{
            text:"the song's location"
            columns:40
            selectOnFocus:true
        public var browser=Button {
         text: "Browser"
         action: function() {
                    var jfc=new JFileChooser();               
              jfc.setFileSelectionMode(JFileChooser.FILES_AND_DIRECTORIES);
                    var val = jfc.showOpenDialog(null);
                    if(val == JFileChooser.APPROVE_OPTION) {                   
                        location.text = jfc.getSelectedFile().getAbsolutePath();
                        uri=jfc.getSelectedFile().toURI().toString();
                        println(location.text);
        public var face=Group {
         content: [
              Rectangle {
                        x: 0, y: 0
                        width: 800, height: 50
                        fill: Color.SILVER
                     HBox{
                         width:800
                         height:50
                         hpos:HPos.CENTER
                         vpos:VPos.CENTER
                         spacing:5
                         content: [whereis,location,browser]
        public override function create():Node{
            return face;
    }

    thanks for your reply but I need more specific operation.
    maybe I am not very clear about the problem one. I mean when I run the code in standard mode, if I click the browse button, a window will pop out and I can choose a video file from my local harddisk. but if I run it in "web start execution" mode and "run in browser" mode. the browse button make no response when I click it.
    Edited by: Phoenix2006 on Feb 8, 2010 2:35 PM
    Edited by: Phoenix2006 on Feb 8, 2010 2:37 PM
    Edited by: Phoenix2006 on Feb 8, 2010 2:42 PM

  • PDF File not opening in browser for sharepoint 2010

    Recently we have moved our web application from one server to another in Sharepoint 2010. Back up of entire web application was taken and restored in another server. But in the new server , the PDF files in the document library is not getting opened in browser.
    it always open in browser
    I have already made following changes but didn,t work
    Set browser file handling to Permissive from central admin
    Set "open in browser" in setting s of doc library
    Set the doc library file handling property using $docLib = $web.lists["Your Document Library Title"] $docLib.BrowserFileHandling = "Permissive" $docLib.Update()
    Added "AllowedInlineDownloadedMimeType.Add("Application/Pdf") in web app
    Installed Adober eader in client machine
    Even after trying all these, the PDF files are still opening in Client application(Adobe reader) but not in the browser
    It would have been great help if anybody provide a solution for this. I have been banging head on this for two days

    It would be handy if you didn't double post too.
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/81ed0362-4033-4a31-b265-c1aba43c3d14/pdf-file-not-opening-in-browser-for-sharepoint-2010?forum=sharepointadminprevious
    To answer your question, you've tried most things that I normally see working, but there may be an extra solution here for you.  The solution 2 Powershell that deals with updating the Inline MimeType may help.
    http://www.pdfshareforms.com/sharepoint-2010-and-pdf-integration-series-part-1/
    Steven Andrews
    SharePoint Business Analyst: LiveNation Entertainment
    Blog: baron72.wordpress.com
    Twitter: Follow @backpackerd00d
    My Wiki Articles:
    CodePlex Corner Series
    Please remember to mark your question as "answered" if this solves (or helps) your problem.

  • Blank error message with ? appears and PDF does not open in Browser (IE11) when clicking link to open pdf. PC - IE11 Acrobat 9.0

    Blank error message with ? appears and PDF does not open in Browser (IE11) when clicking link to open pdf. PC - IE11 Acrobat 9.0
    Cannot access in browser PDF files unless blank box is closed and then website address is clicked on again in browser address bar and page reloaded.
    Uninstalled Acrobat 9, reinstalled, still same problem.
    Help please!

    Yes I can it only happens in the browser..
    I reinstalled Windows on my machine and started over a couple of weeks ago.
    When my desktop started up I didn’t have Acrobat installed and clicked on a pdf file and the open with xxx dialogue box came open.
    I chose a different program as Acrobat wasn’t installed yet so it associated pdf files with another program.
    Later Installed Acrobat and couldn’t associate the pdf file with acrobat so I went into Folder Options and manually associated PDF files with Acrobat.
    Ever since then I get the error when something is downloaded and opened in the browser.
    Works fine everywhere else and when I cancel the blank error, highlight the web address and press enter to reload it works 90% of the time.
    Not sure what to do..

  • PDF hyperlinks not working on app

    I have pasted a PDF (with working links) on a folio page (folios done in PDF format). The page is uploaded but all links on the original PDF are not working once I view it on the app.
    So I'm guessing folios with pasted PDFs on them don't transfer hyperlink properties to the final app? Even thought I've made the folio in PDF format? Does this mean I have to use boxes to create hotspots over the pasted PDF? Is there a way to transfer these properties from the original PDF and skip the hotspot step?
    Thanks.

    You're right -- the placed PDF loses all its interactivity even when it becomes part of a PDF article. You'll need to add buttons over the PDF as you describe. Also, keep in mind that the Show/Hide Buttons action isn't supported in DPS, so you'll need to use a combination of buttons and MSOs to create hotspots, as described in this article:
    http://blogs.adobe.com/indesigndocs/2010/12/hot-spot-button-workaround-for-indesign-dig-pu bs.html

  • E72 - Ctrl+C and Ctrl+V not working in browser

    yesterday i updated my nokia e72 mobile to latest firmware 31 , after that Ctrl+C and Ctrl+V and Ctrl+A shortcut keys are not working in browser. which have made me feel as bad as typing the same text again and again (usfel in blogging or web messaging).
    ALthough these shortcut keys are working in notes and sms application, but not in browser and Quick office applications (word, ecxel etc).
    Can some one tell , how to fix it. or do i need to wait for next firware update. firmware 31 was released on 31 of march 2010. and today is 26th of May. almost two months have passed, and nokia has not yet released patch for this bug ....
    Nokia, how long i need to wait ?, for this bug fix release.

    (Had to edit because didn't read previous post clearly.)
    I originally thought this was a problem of Quick office 6.2.217 Nokia_S603.2. I think it is a Nokia firmware problem as the previous post had stated.

  • NYT videos not working in Safari 5

    NYT videos not working in Safari 5

    Work fine for me - they are just normal Flash videos.
    Make sure your Flash Player is up to date.
    The latest version of Adobe FlashPlayer can be obtained from here:
    http://www.adobe.com/shockwave/download/download.cgi?P1ProdVersion=ShockwaveFlash
    (You can check here: http://www.adobe.com/products/flash/about/ to see which version you should install for your Mac and OS.
    You should first uninstall any previous version of Flash Player, using the uninstaller from here (make sure you use the correct one!):
    http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_14157
    and also that you follow the instructions closely, such as closing ALL applications first before installing. You must also carry out a permission repair after installing anything from Adobe.

  • Youtube videos not working on macbook pro

    youtube videos not working on macbook pro?

    I just purchased a 13" Mid 2012 MB Pro, first time on YouTube, the videos would not play, google "Adobe Flash", download and install the player and you should be good.

  • We need to get some help and explanations about iChat video not working.

    I've read so many postings about iChat Video hoping for an answer to my problem, but not only did I not find an answer, no one else has been receiving an answer either.
    I've had multiple problems with my ichat video not working.
    I either get an error saying someone didn't accept which isn't the case, or I get some error-8 or something ridiculous like that.
    Can we get some help from apple support or something?!

    Short answer: No, we can´t...!
    Apple don´t care about us users, unless you pay for an Apple Care Service. Try your best to follow some advices from around this forum. That´s the only help you will get.
    Some people have got their iChat video working again after following some advice. By the way. I´m not one of them... I´ve tried every single tip I read here, but I´m still stuck with text chat only...
    Good luck.

  • IChat video not working - new thread

    I have an iMac with 4.0.8 and a macbook pro with 5.0 on it. Both have the same issue. I am trying to chat with a friend who has an iMac also. We both get the same issue. If I dial her - it rings on her end, she says accept but then I get a message saying no response from her. Same thing happens the other way around. We never had a problem before. We have not changed our firewall settings on the computers or routers. The only change would be any iChat updates that have been downloaded. I checked the preferences (haven't changed them) and they look ok. We don't use iChat often so I can't remember if we have used it after the last update.

    I guess I have several questions.
    1. If I have not changed any firewall settings and it used to work - why do I have to 'fix' anything now?
    2. If the dialer rings on the receiving computer - doesn't that mean iChat isn't blocked?
    We are im'ing fine using iChat - it is the video not working.
    I don't know if there is port forwarding. I don't see anything anywhere that states DoS or SPI.
    I have Qwest dsl with a 2wire router 2701HG-D. The Qwest Firewall setting are the default secure ones and my OS X firewall was set up using info I got from Macworld Magazine. It all works for me and I did not have problems with iChat until today.
    This is all that appears before the Binary Images line:
    Date/Time: 2009-08-31 13:22:34.321 -0700
    OS Version: 10.5.8 (Build 9L30)
    Report Version: 4
    iChat Connection Log:
    2009-08-31 13:20:23 -0700: AVChat started with ID 2771893227.
    2009-08-31 13:20:23 -0700: [email protected]: State change from AVChatNoState to AVChatStateWaiting.
    2009-08-31 13:20:23 -0700: 0x1cc1ad80: State change from AVChatNoState to AVChatStateInvited.
    2009-08-31 13:20:33 -0700: 0x1cc1ad80: State change from AVChatStateInvited to AVChatStateConnecting.
    2009-08-31 13:20:33 -0700: [email protected]: State change from AVChatStateWaiting to AVChatStateConnecting.
    2009-08-31 13:20:53 -0700: 0x1cc1ad80: State change from AVChatStateConnecting to AVChatStateEnded.
    2009-08-31 13:20:53 -0700: 0x1cc1ad80: Error -8 (Did not receive a response from 0x1cc1ad80.)
    2009-08-31 13:20:53 -0700: [email protected]: State change from AVChatStateConnecting to AVChatStateEnded.
    2009-08-31 13:20:53 -0700: [email protected]: Error -8 (Did not receive a response from 0x1cc1ad80.)
    Video Conference Error Report:
    11.886916 @SIP/SIP.c:2719 type=4 (900A0015/0)
    [SIPConnectIPPort failed]
    13.887780 @SIP/SIP.c:2719 type=4 (900A0015/0)
    [SIPConnectIPPort failed]
    729.836792 @SIP/SIP.c:2719 type=4 (900A0015/0)
    [SIPConnectIPPort failed]
    731.838059 @SIP/SIP.c:2719 type=4 (900A0015/0)
    [SIPConnectIPPort failed]
    4920.034600 @SIP/SIP.c:2719 type=4 (900A0015/0)
    [SIPConnectIPPort failed]
    4922.035824 @SIP/SIP.c:2719 type=4 (900A0015/0)
    [SIPConnectIPPort failed]
    5571.802493 @SIP/SIP.c:2719 type=4 (900A0015/0)
    [SIPConnectIPPort failed]
    5573.803816 @SIP/SIP.c:2719 type=4 (900A0015/0)
    [SIPConnectIPPort failed]
    Video Conference Support Report:
    0.000000 @SIP/Transport.c:2362 type=1 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP rip:16402;branch=z9hG4bK065ceb5d7bef5e41
    To: 0 <sip:user@sip:16402>;tag=1508259682
    From: u0 <sip:user@rip:16402>;tag=1425209130
    Call-ID: c7fc5c8c-965e-11de-83ed-b6a6d9064012@rip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:16402>
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 440
    v=0
    o=Cheryl 0 0 IN IP4 sip
    s=u1
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:2:2800
    a=bandwidthDetection:YES
    a=iChatEncryption:NO
    m=audio 16402 RTP/AVP 110
    a=rtcp:16402
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpID:3655056861
    m=video 16402 RTP/AVP 126
    a=rtcp:16402
    a=rtpmap:126 X-H264/90000
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480
    a=framerate:20
    a=rtpID:3582046653
    0.300294 @SIP/Transport.c:347 type=2 (00000000/0)
    [INVITE sip:user@sip:16402 SIP/2.0
    Via: SIP/2.0/UDP rip:16402;branch=z9hG4bK065ceb5d7bef5e41
    Max-Forwards: 70
    To: 0 <sip:user@sip:16402>
    From: u0 <sip:user@rip:16402>;tag=1425209130
    Call-ID: c7fc5c8c-965e-11de-83ed-b6a6d9064012@rip
    CSeq: 1 INVITE
    Contact: <sip:user@rip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 733
    [v=0
    o=beawhisenand 0 0 IN IP4 rip
    s=u1
    c=IN IP4 rip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:2:2000
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:4172078153
    m=video 16402 RTP/AVP 123 126 34
    a=rtcp:16402
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:2022387783
    0.300530 @SIP/Transport.c:2362 type=1 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP rip:16402;branch=z9hG4bK065ceb5d7bef5e41
    To: 0 <sip:user@sip:16402>;tag=1508259682
    From: u0 <sip:user@rip:16402>;tag=1425209130
    Call-ID: c7fc5c8c-965e-11de-83ed-b6a6d9064012@rip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:16402>
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 440
    v=0
    o=Cheryl 0 0 IN IP4 sip
    s=u1
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:2:2800
    a=bandwidthDetection:YES
    a=iChatEncryption:NO
    m=audio 16402 RTP/AVP 110
    a=rtcp:16402
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpID:3655056861
    m=video 16402 RTP/AVP 126
    a=rtcp:16402
    a=rtpmap:126 X-H264/90000
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480
    a=framerate:20
    a=rtpID:3582046653
    0.801295 @SIP/Transport.c:2362 type=1 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP rip:16402;branch=z9hG4bK065ceb5d7bef5e41
    To: 0 <sip:user@sip:16402>;tag=1508259682
    From: u0 <sip:user@rip:16402>;tag=1425209130
    Call-ID: c7fc5c8c-965e-11de-83ed-b6a6d9064012@rip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:16402>
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 440
    v=0
    o=Cheryl 0 0 IN IP4 sip
    s=u1
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:2:2800
    a=bandwidthDetection:YES
    a=iChatEncryption:NO
    m=audio 16402 RTP/AVP 110
    a=rtcp:16402
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpID:3655056861
    m=video 16402 RTP/AVP 126
    a=rtcp:16402
    a=rtpmap:126 X-H264/90000
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480
    a=framerate:20
    a=rtpID:3582046653
    1.309607 @SIP/Transport.c:347 type=2 (00000000/0)
    [INVITE sip:user@sip:16402 SIP/2.0
    Via: SIP/2.0/UDP rip:16402;branch=z9hG4bK065ceb5d7bef5e41
    Max-Forwards: 70
    To: 0 <sip:user@sip:16402>
    From: u0 <sip:user@rip:16402>;tag=1425209130
    Call-ID: c7fc5c8c-965e-11de-83ed-b6a6d9064012@rip
    CSeq: 1 INVITE
    Contact: <sip:user@rip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 733
    [v=0
    o=beawhisenand 0 0 IN IP4 rip
    s=u1
    c=IN IP4 rip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:2:2000
    a=iChatEncryption:NO
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:4172078153
    m=video 16402 RTP/AVP 123 126 34
    a=rtcp:16402
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:2022387783
    1.309904 @SIP/Transport.c:2362 type=1 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP rip:16402;branch=z9hG4bK065ceb5d7bef5e41
    To: 0 <sip:user@sip:16402>;tag=1508259682
    From: u0 <sip:user@rip:16402>;tag=1425209130
    Call-ID: c7fc5c8c-965e-11de-83ed-b6a6d9064012@rip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:16402>
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 440
    v=0
    o=Cheryl 0 0 IN IP4 sip
    s=u1
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:2:2800
    a=bandwidthDetection:YES
    a=iChatEncryption:NO
    m=audio 16402 RTP/AVP 110
    a=rtcp:16402
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpID:3655056861
    m=video 16402 RTP/AVP 126
    a=rtcp:16402
    a=rtpmap:126 X-H264/90000
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480
    a=framerate:20
    a=rtpID:3582046653
    2.310237 @SIP/Transport.c:2362 type=1 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP rip:16402;branch=z9hG4bK065ceb5d7bef5e41
    To: 0 <sip:user@sip:16402>;tag=1508259682
    From: u0 <sip:user@rip:16402>;tag=1425209130
    Call-ID: c7fc5c8c-965e-11de-83ed-b6a6d9064012@rip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:16402>
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 440
    v=0
    o=Cheryl 0 0 IN IP4 sip
    s=u1
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:2:2800
    a=bandwidthDetection:YES
    a=iChatEncryption:NO
    m=audio 16402 RTP/AVP 110
    a=rtcp:16402
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpID:3655056861
    m=video 16402 RTP/AVP 126
    a=rtcp:16402
    a=rtpmap:126 X-H264/90000
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480
    a=framerate:20
    a=rtpID:3582046653
    4.310627 @SIP/Transport.c:2362 type=1 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP rip:16402;branch=z9hG4bK065ceb5d7bef5e41
    To: 0 <sip:user@sip:16402>;tag=1508259682
    From: u0 <sip:user@rip:16402>;tag=1425209130
    Call-ID: c7fc5c8c-965e-11de-83ed-b6a6d9064012@rip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:16402>
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 440
    v=0
    o=Cheryl 0 0 IN IP4 sip
    s=u1
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:2:2800
    a=bandwidthDetection:YES
    a=iChatEncryption:NO
    m=audio 16402 RTP/AVP 110
    a=rtcp:16402
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpID:3655056861
    m=video 16402 RTP/AVP 126
    a=rtcp:16402
    a=rtpmap:126 X-H264/90000
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480
    a=framerate:20
    a=rtpID:3582046653
    8.310891 @SIP/Transport.c:2362 type=1 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP rip:16402;branch=z9hG4bK065ceb5d7bef5e41
    To: 0 <sip:user@sip:16402>;tag=1508259682
    From: u0 <sip:user@rip:16402>;tag=1425209130
    Call-ID: c7fc5c8c-965e-11de-83ed-b6a6d9064012@rip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:16402>
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 440
    v=0
    o=Cheryl 0 0 IN IP4 sip
    s=u1
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:2:2800
    a=bandwidthDetection:YES
    a=iChatEncryption:NO
    m=audio 16402 RTP/AVP 110
    a=rtcp:16402
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpID:3655056861
    m=video 16402 RTP/AVP 126
    a=rtcp:16402
    a=rtpmap:126 X-H264/90000
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480
    a=framerate:20
    a=rtpID:3582046653
    9.878141 @Video Conference/VCInitiateConference.m:1703 type=2 (00000000/0)
    [Initiate Conference To User: u1 with Remote VCConnectionData: 1 with Local Connection Data: 1 conferenceSettings: 1]
    9.886122 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK7c101e29710002ec
    Max-Forwards: 70
    To: u0 <sip:user@rip:16402>
    From: 0 <sip:user@lip:16402>;tag=2057174596
    Call-ID: cdd9ce28-965e-11de-b3ee-d67323c54012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:16402>;isfocus;ismultiway
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 746
    v=0
    o=Cheryl 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:1317
    t=0 0
    a=hwi:1056:2:2800
    a=multipoint:1
    a=iChatEncryption:YES
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:2918207823
    m=video 16402 RTP/AVP 123 126 34
    a=rtcp:16402
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 0 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 30:160:120:320:240:30
    a=fmtp:123 imagesize 0 rules 30:160:120:320:240:30
    a=rtpID:1501233089
    10.386447 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK7c101e29710002ec
    Max-Forwards: 70
    To: u0 <sip:user@rip:16402>
    From: 0 <sip:user@lip:16402>;tag=2057174596
    Call-ID: cdd9ce28-965e-11de-b3ee-d67323c54012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:16402>;isfocus;ismultiway
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 746
    v=0
    o=Cheryl 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:1317
    t=0 0
    a=hwi:1056:2:2800
    a=multipoint:1
    a=iChatEncryption:YES
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:2918207823
    m=video 16402 RTP/AVP 123 126 34
    a=rtcp:16402
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 0 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 30:160:120:320:240:30
    a=fmtp:123 imagesize 0 rules 30:160:120:320:240:30
    a=rtpID:1501233089
    11.386723 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK7c101e29710002ec
    Max-Forwards: 70
    To: u0 <sip:user@rip:16402>
    From: 0 <sip:user@lip:16402>;tag=2057174596
    Call-ID: cdd9ce28-965e-11de-b3ee-d67323c54012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:16402>;isfocus;ismultiway
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 746
    v=0
    o=Cheryl 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:1317
    t=0 0
    a=hwi:1056:2:2800
    a=multipoint:1
    a=iChatEncryption:YES
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:2918207823
    m=video 16402 RTP/AVP 123 126 34
    a=rtcp:16402
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 0 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 30:160:120:320:240:30
    a=fmtp:123 imagesize 0 rules 30:160:120:320:240:30
    a=rtpID:1501233089
    11.887344 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP lip:16402;branch=z9hG4bK240b2b5a78ab1094
    Max-Forwards: 70
    To: u0 <sip:user@rip:16402>
    From: 0 <sip:user@lip:16402>;tag=1918250311
    Call-ID: cf0b2dbe-965e-11de-b3ee-b77d61ac4012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@lip:16402>;isfocus;ismultiway
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 746
    v=0
    o=Cheryl 0 0 IN IP4 lip
    s=0
    c=IN IP4 lip
    b=AS:1317
    t=0 0
    a=hwi:1056:2:2800
    a=multipoint:1
    a=iChatEncryption:YES
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:2918207823
    m=video 16402 RTP/AVP 123 126 34
    a=rtcp:16402
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 0 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 30:160:120:320:240:30
    a=fmtp:123 imagesize 0 rules 30:160:120:320:240:30
    a=rtpID:1501233089
    11.951360 @SIP/Transport.c:2362 type=1 (00000000/0)
    [MESSAGE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK42e4e649299d7dc2
    Max-Forwards: 70
    To: u0 <sip:user@rip:16402>;tag=1425209130
    From: 0 <sip:user@sip:16402>;tag=1508259682
    Call-ID: c7fc5c8c-965e-11de-83ed-b6a6d9064012@rip
    CSeq: 1 MESSAGE
    User-Agent: Viceroy 1.3
    Content-Type: text/plain
    Content-Length: 4
    PING]
    12.311300 @SIP/Transport.c:2362 type=1 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP rip:16402;branch=z9hG4bK065ceb5d7bef5e41
    To: 0 <sip:user@sip:16402>;tag=1508259682
    From: u0 <sip:user@rip:16402>;tag=1425209130
    Call-ID: c7fc5c8c-965e-11de-83ed-b6a6d9064012@rip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:16402>
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 440
    v=0
    o=Cheryl 0 0 IN IP4 sip
    s=u1
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:2:2800
    a=bandwidthDetection:YES
    a=iChatEncryption:NO
    m=audio 16402 RTP/AVP 110
    a=rtcp:16402
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpID:3655056861
    m=video 16402 RTP/AVP 126
    a=rtcp:16402
    a=rtpmap:126 X-H264/90000
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480
    a=framerate:20
    a=rtpID:3582046653
    12.387798 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP lip:16402;branch=z9hG4bK240b2b5a78ab1094
    Max-Forwards: 70
    To: u0 <sip:user@rip:16402>
    From: 0 <sip:user@lip:16402>;tag=1918250311
    Call-ID: cf0b2dbe-965e-11de-b3ee-b77d61ac4012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@lip:16402>;isfocus;ismultiway
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 746
    v=0
    o=Cheryl 0 0 IN IP4 lip
    s=0
    c=IN IP4 lip
    b=AS:1317
    t=0 0
    a=hwi:1056:2:2800
    a=multipoint:1
    a=iChatEncryption:YES
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:2918207823
    m=video 16402 RTP/AVP 123 126 34
    a=rtcp:16402
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 0 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 30:160:120:320:240:30
    a=fmtp:123 imagesize 0 rules 30:160:120:320:240:30
    a=rtpID:1501233089
    12.451516 @SIP/Transport.c:2362 type=1 (00000000/0)
    [MESSAGE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK42e4e649299d7dc2
    Max-Forwards: 70
    To: u0 <sip:user@rip:16402>;tag=1425209130
    From: 0 <sip:user@sip:16402>;tag=1508259682
    Call-ID: c7fc5c8c-965e-11de-83ed-b6a6d9064012@rip
    CSeq: 1 MESSAGE
    User-Agent: Viceroy 1.3
    Content-Type: text/plain
    Content-Length: 4
    PING]
    13.388568 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP lip:16402;branch=z9hG4bK240b2b5a78ab1094
    Max-Forwards: 70
    To: u0 <sip:user@rip:16402>
    From: 0 <sip:user@lip:16402>;tag=1918250311
    Call-ID: cf0b2dbe-965e-11de-b3ee-b77d61ac4012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@lip:16402>;isfocus;ismultiway
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 746
    v=0
    o=Cheryl 0 0 IN IP4 lip
    s=0
    c=IN IP4 lip
    b=AS:1317
    t=0 0
    a=hwi:1056:2:2800
    a=multipoint:1
    a=iChatEncryption:YES
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:2918207823
    m=video 16402 RTP/AVP 123 126 34
    a=rtcp:16402
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 0 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 30:160:120:320:240:30
    a=fmtp:123 imagesize 0 rules 30:160:120:320:240:30
    a=rtpID:1501233089
    13.451729 @SIP/Transport.c:2362 type=1 (00000000/0)
    [MESSAGE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK42e4e649299d7dc2
    Max-Forwards: 70
    To: u0 <sip:user@rip:16402>;tag=1425209130
    From: 0 <sip:user@sip:16402>;tag=1508259682
    Call-ID: c7fc5c8c-965e-11de-83ed-b6a6d9064012@rip
    CSeq: 1 MESSAGE
    User-Agent: Viceroy 1.3
    Content-Type: text/plain
    Content-Length: 4
    PING]
    14.261229 @SIP/Transport.c:2362 type=1 (00000000/0)
    [SIP/2.0 500 Internal Server Error
    Via: SIP/2.0/UDP rip:16402;branch=z9hG4bK065ceb5d7bef5e41
    To: 0 <sip:user@sip:16402>;tag=1508259682
    From: u0 <sip:user@rip:16402>;tag=1425209130
    Call-ID: c7fc5c8c-965e-11de-83ed-b6a6d9064012@rip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:16402>
    User-Agent: Viceroy 1.3
    Content-Length: 0
    709.913291 @Video Conference/VCInitiateConference.m:1584 type=2 (00000000/0)
    [Connection Data for call id: 9 returns 1
    721.824530 @Video Conference/VCInitiateConference.m:1599 type=2 (00000000/0)
    [Prepare Connection With Remote Data - remote VCConnectionData: 1, local VCConnectionData: 1
    721.829743 @Video Conference/VCInitiateConference.m:1703 type=2 (00000000/0)
    [Initiate Conference To User: u0 with Remote VCConnectionData: 1 with Local Connection Data: 1 conferenceSettings: 1]
    727.836757 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK5362fe006ca0a1fb
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=1442564897
    Call-ID: 79c9f806-9660-11de-b3ee-d51929964012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 736
    v=0
    o=Cheryl 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:2:2800
    a=iChatEncryption:YES
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:1935341664
    m=video 16402 RTP/AVP 123 126 34
    a=rtcp:16402
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:3501110652
    728.337178 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK5362fe006ca0a1fb
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=1442564897
    Call-ID: 79c9f806-9660-11de-b3ee-d51929964012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 736
    v=0
    o=Cheryl 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:2:2800
    a=iChatEncryption:YES
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:1935341664
    m=video 16402 RTP/AVP 123 126 34
    a=rtcp:16402
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:3501110652
    729.337610 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK5362fe006ca0a1fb
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=1442564897
    Call-ID: 79c9f806-9660-11de-b3ee-d51929964012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 736
    v=0
    o=Cheryl 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:2:2800
    a=iChatEncryption:YES
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:1935341664
    m=video 16402 RTP/AVP 123 126 34
    a=rtcp:16402
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:3501110652
    729.837143 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP lip:16402;branch=z9hG4bK7510535a10bb0b36
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=792276808
    Call-ID: 7afb3564-9660-11de-b3ee-837950794012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@lip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 736
    v=0
    o=Cheryl 0 0 IN IP4 lip
    s=0
    c=IN IP4 lip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:2:2800
    a=iChatEncryption:YES
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:1935341664
    m=video 16402 RTP/AVP 123 126 34
    a=rtcp:16402
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:3501110652
    730.337502 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP lip:16402;branch=z9hG4bK7510535a10bb0b36
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=792276808
    Call-ID: 7afb3564-9660-11de-b3ee-837950794012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@lip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 736
    v=0
    o=Cheryl 0 0 IN IP4 lip
    s=0
    c=IN IP4 lip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:2:2800
    a=iChatEncryption:YES
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:1935341664
    m=video 16402 RTP/AVP 123 126 34
    a=rtcp:16402
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:3501110652
    731.337865 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP lip:16402;branch=z9hG4bK7510535a10bb0b36
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=792276808
    Call-ID: 7afb3564-9660-11de-b3ee-837950794012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@lip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 736
    v=0
    o=Cheryl 0 0 IN IP4 lip
    s=0
    c=IN IP4 lip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:2:2800
    a=iChatEncryption:YES
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:1935341664
    m=video 16402 RTP/AVP 123 126 34
    a=rtcp:16402
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:3501110652
    4902.071509 @Video Conference/VCInitiateConference.m:1584 type=2 (00000000/0)
    [Connection Data for call id: 11 returns 1
    4912.024096 @Video Conference/VCInitiateConference.m:1599 type=2 (00000000/0)
    [Prepare Connection With Remote Data - remote VCConnectionData: 1, local VCConnectionData: 1
    4912.026527 @Video Conference/VCInitiateConference.m:1703 type=2 (00000000/0)
    [Initiate Conference To User: u10 with Remote VCConnectionData: 1 with Local Connection Data: 1 conferenceSettings: 1]
    4918.034633 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK44bb78844fc721af
    Max-Forwards: 70
    To: "u10" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=393564959
    Call-ID: 3b60597a-966a-11de-b3ee-a0430b004012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 736
    v=0
    o=Cheryl 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:2:2800
    a=iChatEncryption:YES
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:1914993265
    m=video 16402 RTP/AVP 123 126 34
    a=rtcp:16402
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:1076908916
    4918.534977 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK44bb78844fc721af
    Max-Forwards: 70
    To: "u10" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=393564959
    Call-ID: 3b60597a-966a-11de-b3ee-a0430b004012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 736
    v=0
    o=Cheryl 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:2:2800
    a=iChatEncryption:YES
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:1914993265
    m=video 16402 RTP/AVP 123 126 34
    a=rtcp:16402
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:1076908916
    4919.535423 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK44bb78844fc721af
    Max-Forwards: 70
    To: "u10" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=393564959
    Call-ID: 3b60597a-966a-11de-b3ee-a0430b004012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 736
    v=0
    o=Cheryl 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:2:2800
    a=iChatEncryption:YES
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:1914993265
    m=video 16402 RTP/AVP 123 126 34
    a=rtcp:16402
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:1076908916
    4920.034917 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP lip:16402;branch=z9hG4bK1ba35786014c77fb
    Max-Forwards: 70
    To: "u10" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=687241536
    Call-ID: 3c9193ae-966a-11de-b3ee-a0d80d784012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@lip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 736
    v=0
    o=Cheryl 0 0 IN IP4 lip
    s=0
    c=IN IP4 lip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:2:2800
    a=iChatEncryption:YES
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:1914993265
    m=video 16402 RTP/AVP 123 126 34
    a=rtcp:16402
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:1076908916
    4920.535275 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP lip:16402;branch=z9hG4bK1ba35786014c77fb
    Max-Forwards: 70
    To: "u10" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=687241536
    Call-ID: 3c9193ae-966a-11de-b3ee-a0d80d784012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@lip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 736
    v=0
    o=Cheryl 0 0 IN IP4 lip
    s=0
    c=IN IP4 lip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:2:2800
    a=iChatEncryption:YES
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:1914993265
    m=video 16402 RTP/AVP 123 126 34
    a=rtcp:16402
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:1076908916
    4921.535639 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP lip:16402;branch=z9hG4bK1ba35786014c77fb
    Max-Forwards: 70
    To: "u10" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=687241536
    Call-ID: 3c9193ae-966a-11de-b3ee-a0d80d784012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@lip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 736
    v=0
    o=Cheryl 0 0 IN IP4 lip
    s=0
    c=IN IP4 lip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:2:2800
    a=iChatEncryption:YES
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:1914993265
    m=video 16402 RTP/AVP 123 126 34
    a=rtcp:16402
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:1076908916
    5553.734316 @Video Conference/VCInitiateConference.m:1584 type=2 (00000000/0)
    [Connection Data for call id: 13 returns 1
    5563.737875 @Video Conference/VCInitiateConference.m:1599 type=2 (00000000/0)
    [Prepare Connection With Remote Data - remote VCConnectionData: 1, local VCConnectionData: 1
    5563.740451 @Video Conference/VCInitiateConference.m:1703 type=2 (00000000/0)
    [Initiate Conference To User: u12 with Remote VCConnectionData: 1 with Local Connection Data: 1 conferenceSettings: 1]
    5569.802451 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK51446e194f80ac92
    Max-Forwards: 70
    To: "u12" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=400777038
    Call-ID: bfddc34e-966b-11de-b3ee-e6b36f264012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 734
    v=0
    o=Cheryl 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:2:2800
    a=iChatEncryption:YES
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:734190766
    m=video 16402 RTP/AVP 123 126 34
    a=rtcp:16402
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:84804840
    5570.302882 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK51446e194f80ac92
    Max-Forwards: 70
    To: "u12" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=400777038
    Call-ID: bfddc34e-966b-11de-b3ee-e6b36f264012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 734
    v=0
    o=Cheryl 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:2:2800
    a=iChatEncryption:YES
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:734190766
    m=video 16402 RTP/AVP 123 126 34
    a=rtcp:16402
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:84804840
    5571.303269 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK51446e194f80ac92
    Max-Forwards: 70
    To: "u12" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=400777038
    Call-ID: bfddc34e-966b-11de-b3ee-e6b36f264012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 734
    v=0
    o=Cheryl 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:2:2800
    a=iChatEncryption:YES
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:734190766
    m=video 16402 RTP/AVP 123 126 34
    a=rtcp:16402
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:84804840
    5571.802916 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP lip:16402;branch=z9hG4bK251f7b0321d608dd
    Max-Forwards: 70
    To: "u12" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=2137793200
    Call-ID: c10f0656-966b-11de-b3ee-f915ed3f4012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@lip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 734
    v=0
    o=Cheryl 0 0 IN IP4 lip
    s=0
    c=IN IP4 lip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:2:2800
    a=iChatEncryption:YES
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:734190766
    m=video 16402 RTP/AVP 123 126 34
    a=rtcp:16402
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:84804840
    5572.303349 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP lip:16402;branch=z9hG4bK251f7b0321d608dd
    Max-Forwards: 70
    To: "u12" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=2137793200
    Call-ID: c10f0656-966b-11de-b3ee-f915ed3f4012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@lip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 734
    v=0
    o=Cheryl 0 0 IN IP4 lip
    s=0
    c=IN IP4 lip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:2:2800
    a=iChatEncryption:YES
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:734190766
    m=video 16402 RTP/AVP 123 126 34
    a=rtcp:16402
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:84804840
    5573.303626 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP lip:16402;branch=z9hG4bK251f7b0321d608dd
    Max-Forwards: 70
    To: "u12" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=2137793200
    Call-ID: c10f0656-966b-11de-b3ee-f915ed3f4012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@lip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 734
    v=0
    o=Cheryl 0 0 IN IP4 lip
    s=0
    c=IN IP4 lip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:2:2800
    a=iChatEncryption:YES
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:734190766
    m=video 16402 RTP/AVP 123 126 34
    a=rtcp:16402
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:84804840
    Video Conference User Report:
    731.904826 @Video Conference/VideoConferenceMultiController.m:1474 type=5 (00000000/0)
    [IP And Port Data With Caller IP And Port Data: Obtained 120 bytes of local IP and port data (3 entries). Remote data was 0 bytes (0 entries).
    4922.104606 @Video Conference/VideoConferenceMultiController.m:1474 type=5 (00000000/0)
    [IP And Port Data With Caller IP And Port Data: Obtained 120 bytes of local IP and port data (3 entries). Remote data was 0 bytes (0 entries).
    5573.923260 @Video Conference/VideoConferenceMultiController.m:1474 type=5 (00000000/0)
    [IP And Port Data With Caller IP And Port Data: Obtained 120 bytes of local IP and port data (3 entries). Remote data was 0 bytes (0 entries).
    []

  • IChat Video Not Working since PSP3 bought!!

    Hi guys,
    ichat video not working since I bought and installed a new Playstation 3. I have a BT HUB that connects wirelessly with the imac. I have BT Vision running from the HUB too via ethernet wall boost adapters. I had this problem with video when i installed the BT Vision. And turned out to be something to do with Application Sharing settings on the HUB. I resolved it by correctly sharing AIM TALK with my wireless imac. Now the same problem has arisen since the psp3 was put on. But even with all the things I've tried I am stuck as how to get the video up and running as before. The devices running off the hub include:
    1. imac (wireless via Airport Extreme)
    2. BT Vision via ethernet and wall adaptors
    3. iPod touch via wireless
    4. PSP3 via wireless plug and play
    I have checked all the ip address for these devices and have enabled app sharing for the imac wireless to AIM TALK in BT HUB manager. I have also opened my firewalls; changed the port setting to 443 in ichat preferences; re-set the HUB/Router;
    Is there anything else I can do or check? As I said it worked perfectly before the psp3 went onto the
    network. Should i assign AIM TALK to the imac wireless or to some of the other devices? (though I think I've tried that too!!)
    Help would be much appreciated as this is driving me to insanity, if I wasn't there already!!!!
    Take care, and thanks in advance for your help.
    Baz, Belfast, Northern Ireland, Europe!!

    "speedtouch modem!"
    Yes you do.
    Thomson-Alcetel who make the Speedtouch range make this device for BT.
    The Firmware is Thomson-Alcatels with BT Logo-ing.
    This Ethernet 3 connection is probably internal.
    Have you got System Preferences > Quicktime > Streaming set to 1.5Mbps ?
    If not then do and restart iChat to see the new speed.
    In Leopard the Automatic setting is read by iChat as 384K.
    This may be allowing the PS3 to have too much of the bandwidth.
    I or rather my son has a X-Box 360 which can be on-line when I video chat and it works for me, as it does when he uses his PlayStation 3
    If the AIM talk setting uses the same port here as it is listed elsewhere then it has only opened/allowed port 5190.
    This would have appeared to have been coincidental to any iChat use when you changed it.
    Are you not using UPnP in this device ?
    Which firmware is it up to ?
    Anything above 6.2.2.6 should work.
    Anything starting with 6 and containing letters is later.
    In the .telephony section does it mention which port are open ?
    9:00 PM Sunday; May 11, 2008

Maybe you are looking for