About the delay when calling Player.start()

How to eliminate or reduce the delay when calling Player.start()? Can someone kindly give some suggestions about the issue? Is that right the more small size of the media file, the more small delay? Can the delay be eliminate?

I think my expression is not clear enough, I rewrite as followed: How to eliminate or reduce the canvas repainting delay when calling Player.start(). The media playing does not delay, but the canvas repainting have a serious delay.

Similar Messages

  • Bring Excel 2007 to the front when called from LabView v9 in Windows 7

    I am building a duplicate system using Windows 7, LabView v9 and Excel v2007.  The original system used WinXP, Excel 2007 and LabView v8.6.  The issue is that the original system was able to bring Excel to the front when called from Labview using the property node -application-> visible.  This new configuration runs Excel, loads the data, runs the macros but does not bring Excel to the front.  The icon blinks in the Win7 taskbar and when selected displays over LabView.  If I minimize the Labview window, Excel is there.  This leads me to conclude that Excel is visible, as requested but will not come to the front until selected from the taskbar.  The only differences, besides the versions, is the original system template files used the .xls extension in and was run in Excel in compatible mode.  At the customers request, the new system uses the .xlsm extension on the Excel template files.  I have tried using application.visible = True in the macro as well.  Could be a setting in Labview?  Could be a setting in Excel? Could be .xls vs. .xlsm? Or an issue with Windows 7 and the newer version of Labview. 
    HP workstation - Labview v9 - Windows 7 - Excel 2007 sp2
    Thank you in advance
    Stephen
    Solved!
    Go to Solution.

    I will try the windowstate change.  Were these done in succession? (i.e. property node -> property node -> property node) Or were they done along the way such as call the ActiveX open and a property node then in a worksheet modification area etc. so there was some time between calls? 
    I am not sure about the API since the discussion there is with regard to DDE.  (Taken from the link document:  If you want to call a DLL that contains ActiveX
    objects, use the Automation
    Open VI with the Property
    Node and the Invoke
    Node.).  I am calling Excel as an application not as a library call unless I am mistaken, which I could certainly be.  Are you thinking that once Excel is active through the Automation Open VI that a DLL call to set the application visible would work?  I may be trying this already but in Excel through the use of the macro I call from LabView.  It contains application.visible = True at the beginning before reading files and plotting data.  
    I may try sprinkling Property node with application->visible in various locations in the LabView diagram as I do update cells after the call to the plot macro.  The puzzle for me is the blinking Excel icon in the task bar.  This means active and running but not visible or something wrong as well.  There are a few #VALUE cells if not all test in the system are run.  Again not a problem in Excel 2007-WinXP-LV8.6
    Thank you again one and all.

  • Does anybody can give me a simple example about the labview programme calling dll ?

      Does anybody can give me a simple example about the labview programme calling dll ?And the dll is also writed  by using labview .I just want to study  the process of the labview programme calling dll file.Thank you!

    Hi,
    Please click on "Find Examples" in the "Getting Started Window"
     A window named "NI Example Finder" will pop up.
     In this go to "Search" tab
    Type "DLLs"
    You will see a lot of examples. 
    If you're online, you'll see user examples too...

  • Hi, i'm a new member of this community. I've recently learn about flashback malware and other threats to Mac devices. I've installed the new Mac OS X update for Lion 10.7, and the flashback removal tool. what about the update for Flash Player?

    Hi,
    i'm a new member of this community. I've recently learn about flashback malware and other threats to Mac devices. I've installed the new Mac OS X update for Lion 10.7, and the flashback removal tool. What about the update for Flash Player? Should i install it? Otherwise, should i permanently remove this app?
    I realy need some advice.
    Thank's to all.

    Be sure to install the latest version of Safari (version 5.1.7) which is available via Software Update (in the Apple menu) if you have not already installed it. This update will automatically disable older versions of Flash when new versions are available, and will instruct you on how to install the latest version on your system. This should help keep your system safe from any vulnerabilities in Flash.
    Note that this is only useful if you use Safari, though other browsers have their own update mechanisms you should research and enable or configure to your liking.

  • How to solve illustrator cs6 save as cs5 problem about the stroke(when the stroke with clipping mask and color is gradient, save as cs5 will change to embed ).

    how to solve illustrator cs6 save as cs5 problem about the stroke(when the stroke with clipping mask and color is gradient, save as cs5 will change to embed ).

    Because it was not possible to apply a gradient to a stroke in CS5. When you open the file in CS5, it is reduced to something that can be rendered in CS5.

  • I've lost the "boing" when my imac starts up. Can anyone tell me how to get it back? I'm running OS 10.6.8

    I've lost the "boing" when my imac starts up.  Can anyone tell me how to get it back?  I'm running OS 10.6.8

    Zap the PRAM and Reset the SMC; that should do the trick.

  • How to know about the User_Exit being called in MB31

    Dear Sir,
    Kindly guide us about the steps to be followed , for knowing that which USER_EXIT are being called during the MB31 transaction .
    Also request you to kindly guide us about the steps to be followed in debugging of transaction MB31 .
    We assure to give full points for the suggested solution pl .
    Rgds
    B Mittal

    Hi,
    Check the code below. This will give you the list of Active User Exits.
    Hope this helps.
    *& Report  Y_TEST_USER_EXIT
    && This report displays all the active customer enhancements in the
    *& system and also displays whether they are active or implemented
    REPORT  Y_TEST_USER_EXIT.
    *Data decleration
    types: begin of s_function,
    fname like MOD0-FUNCNAME,
    ftext like tftit-stext,
    impl,
    active,
    example,
    end of s_function.
    TYPEs : BEGIN OF display_str,
    project type modact-name,
    enhancement type modact-member,
    fm type modsap-member,
    status type char20,
    END OF display_str.
    constants: c_true type char4 value 'True'.
    data : lt_member type table of modact-member,
    ls_member like LINE OF lt_member,
    lt_fm type table of modsap-member,
    ls_fm like LINE OF lt_fm,
    lt_modname type table of modact-name,
    ls_modname like line of lt_modname,
    lt_display type TABLE OF display_str,
    ls_display like LINE OF lt_display,
    ls_function type s_function,
    field1(30).
    START-OF-SELECTION.
    *Select active customer enhancement.
    select name from modattr into ls_modname
    where status = 'A'.
    append ls_modname to lt_modname.
    CLEAR ls_modname.
    ENDSELECT.
    if lt_modname is INITIAL.
    WRITE / 'no active enhancements'.
    endif.
    *Determine the details about the customer enhancement.
    LOOP AT lt_modname INTO ls_modname.
    CLEAR : ls_display.
    SELECT member from modact into ls_member where name = ls_modname.
    select member from modsap into ls_fm where name = ls_member and typ = 'E'.
    ls_display-project = ls_modname.
    ls_display-enhancement = ls_member.
    ls_display-fm = ls_fm.
    clear : ls_function.
    ls_function-fname = ls_fm.
    perform get_impl_status USING ls_function.
    if ls_function-impl = 'X'.
    ls_display-status = 'Implemented'.
    ELSE.
    ls_display-status = 'Active'.
    endif.
    APPEND ls_display to lt_display.
    endselect.
    ENDSELECT.
    ENDLOOP.
    *Displaying results
    format color = 1.
    write : 'Please double-click on the object for follow-on action'.
    new-LINE. uline.
    write : 'Customer Project', at 30 'SAP Enhancement', at 60 'Exit Func Mod', at 100 'Active/Implem'.
    ULINE.
    format color = 0.
    loop at lt_display into ls_display.
    new-LINE.
    write : ls_display-project, at 30 ls_display-enhancement, at 60 ls_display-fm,
    at 100 ls_display-status.
    ENDLOOP.
    *For calling transaction CMOD / SMOD / SE37.
    at line-selection.
    get cursor field field1.
    CASE field1.
    WHEN 'LS_DISPLAY-PROJECT'.
    set parameter id 'MON_KUN' field sy-lisel(10).
    call transaction 'CMOD' and skip first screen.
    WHEN 'LS_DISPLAY-ENHANCEMENT'.
    set parameter id 'MON' field sy-lisel+29(10).
    call transaction 'SMOD' and skip first screen.
    WHEN 'LS_DISPLAY-FM'.
    set parameter id 'LIB' field sy-lisel+59(30).
    call transaction 'SE37' and skip first screen.
    WHEN OTHERS.
    message 'Click on the right place.' TYPE 'I'.
    ENDCASE.
    **& Form get_impl_status
    *This FORM checks whether an EXIT FM is implemented or not
    form get_impl_status using p_function type s_function.
    data : l_mand LIKE tfdir-mand,
    l_incl_names TYPE smod_names OCCURS 1 WITH HEADER LINE.
    l_incl_names-itype = 'C'.
    APPEND l_incl_names.
    CLEAR l_mand.
    SELECT SINGLE mand FROM tfdir INTO l_mand WHERE funcname = p_function-fname.
    IF sy-subrc = 0 AND l_mand(1) = 'C'.
    p_function-active = 'X'.
    *l_status-active = c_true.
    ELSE.
    p_function-active = ' '.
    *l_status-inactive = c_true.
    ENDIF.
    CALL FUNCTION 'MOD_FUNCTION_INCLUDE'
    EXPORTING
    funcname = p_function-fname
    TABLES
    incl_names = l_incl_names
    EXCEPTIONS
    OTHERS = 4.
    IF sy-subrc = 0.
    LOOP AT l_incl_names.
    SELECT SINGLE name FROM trdir INTO l_incl_names-iname
    WHERE name = l_incl_names-iname.
    IF sy-subrc = 0.
    p_function-impl = 'X'.
    ELSE.
    p_function-impl = ' '.
    ENDIF.
    ENDLOOP.
    ENDIF.
    endform. "get_impl_status
    Also Check the code posted by me in the lonk below ,to get the List of available User exits and Badi for a particular tcode . very useful program.
    Re: User Exit for IW22 - to populate custom fields
    Hope it helps.
    Manish

  • Audio delay when call is answered, CUCM 8.0

    I have a client who is reporting an audio delay when a call is made to an external number. Call setup is fine and ringing begins immediately after the last digit is dialed.  When the called party answers there's a 1 or 2 second delay before either party can hear each other.
    Outbound calls are routed to a SIP trunk.  I am suspecting that an MTP is required but checking that off causes all calls to fail. 
    I then discovered that the only MTP defined in CUCM is the default and this is in a different device pool than the SIP trunk with the delay issue.
    Before I got through a possilbe hardware purchase (router, dsps, etc.) for the site with the problem I was hoping someone could confirm that this may in fact be the issue.
    Thoughts?

    Under older versions of CUCM, you can set that same parameter as a global Service Parameter for the CallManager process.You can try that. Newer versions pushed the setting down to the individual trunk level. Be aware the global setting will affect all calls on all SIP trunks, so test carefully after the change.

  • Problem about the jmf when working over IPV6

    I write a program about monitoring a RTP stream ,get the feedbacks about the stream by receving the RTCP reports and analysize the paramaters .Now the throny issues encountered is the code working perfect over the IPV4 network .but there are many exceptions when working over IPV6 the exceptions is as follows:
    Exception in thread "RTCP Reporter" java.lang.NullPointerException
    at com.sun.media.rtp.RTCPTransmitter.makereports(RTCPTransmitter.java:200)
    at com.sun.media.rtp.RTCPTransmitter.report(RTCPTransmitter.java:106)
    at com.sun.media.rtp.RTCPReporter.run(RTCPReporter.java:193)
    at java.lang.Thread.run(Thread.java:619)
    the session can be set up and can receive the stream .so I think it is ok of setting up the session with the IPV6 multicast address.strangely , the same particate in the session sends more than one feedbacks with different SSRC which is ought to be single.I cannot figure out.
    I wonder whether there is any special setting when JMF working on the IPV6 network.I did not find materials about the JMF working on IPV6 network in Microsoft xp pc.
    can any guys give me any tips?
    Edited by: judyw115 on Sep 4, 2010 6:08 AM

    judyw115 wrote:
    Is there anyone giving me any advices?You realize this is a free forum and not paid tech support, right?
    Drop the attitude and learn to be patient.

  • Picture of the contact when calling and...

    Hey,
    When someone calls me, I don't see his photo on full screen, instead I see the wallpaper and a small pic of him at the top.
    How can I make it put the photo of the caller instead of the wallpaper when he calls me?
    And can I put a password to enter when I want to see a certain contact's info?
    Thanks in advance,
    Camille

    A photo assigned to a contact with the Address Book on your Mac, which is transferred to your iPhone via the iTunes sync process, appears postage stamp size when receiving a call from the contact and when placing a call to a contact. If you want a contact's photo to appear full screen when receiving a call from the contact or placing a call to the contact, you need to assign a photo to the contact on your iPhone.
    And can I put a password to enter when I want to see a certain contact's info?
    No.

  • Beep tone delay when call landed CAD in UCCE Hosted solution.

    Hi ,
    We have UCCE Hosted infra call center Version 9. i am struggling Beep tone delay issue when agent getting a customer call in CTI platform , Calls stetting configured in auto answered mode. when Call initiate  Beep tone heard  20 sec delay but call invoke CTI 20 second prior.
    Did any one face similar issue and any suggestion to fix.
    Sattyendra 

    Hi ,
    This type of issue can be a suspect of BUG in CIPC.
    Can you please share me logs and Version of CIPC and what window OS is in use.
    Regards
    CCIEChase

  • So I called Apple Care to ask about the delay with my MBP

    It's been almost a month - August 22nd - since i sent it in. Apparently, i'm waiting for a part - Logic Board? Probably.
    The guy put me on hold to check on the status. The song playing when he put me on hold? Hold On For One More Day, by Wilson Phillips. I kid you not.
    He said it would be back in a week and a half. I'm ******, but what can you do?

    That is absolutely awful and there is no excuse for that.
    Call customer relations and explain to them the situation. No one should have to wait a month.
    Apple Customer Relations: (800) 767-2775

  • I was surfing the net when my computer started emitting double beeps. I shut it down with no problem but I can't find any info on double beeps that did not occur at startup (haven't tried starting it back up yet though). What happened?

    Quite the trial to sign in to freaking Apple support.  I apparently made an account with my primary e-mail, but damned if I can recover the password, apparently I don't know my own birthday.  So I had to make a new account with another e-mail, and even when I thought it was done, no, I had to fill out more information before I could get to this screen.  You won't let me ask for tech support from your message board without my mailing address?  Then my completely inoccuous user name was rejected for containing banned words.  Lemurs and cats are profane now, what?  This is why I hate computers.
    Anyway, I've got Mac OS X 4.something, can't check because it is shut down, and I already described my problem in the subject there before I got dragged back into account creation.  I searched several places for answers but all I can find are discussions about double beeping at startup (even when excluding the word "startup" from search results), while my double beeping started all of a sudden when the computer was in use.  The beeps were certainly less than a minute apart.  What happened? What do I need to do about it? Is it safe to start the computer up again?  Fortunately my files are pretty much all backed up.

    I don't know if we are experiencing the same problem, but this is what I did and it seemed to work for me so far.
    Before anything I had to hard restart my laptop. hold power button until off then turn back on.
    In Finder click on Go, then click Go to Folder.  in the dialogue box type
    /var/db/crls
    In that folder there are two files that you need to move to the trash
    crlcache.db
    ocspcache.db
    You will need to type in your password to move these to the trash.
    Restart your computer and then Empty the Trash.  It is very important that you empty the trash afterwards.  I forgot to do this the first time and I had to restart the whole process.  It has been a few days and I have been without any problems.
    I am not claiming this process to be my own, I found it on another discussion thread and it worked for me. I don't have a link to it because I had to use someone else's computer and had no luck trying to find it again. This is the procedure I followed, I do remember it well and I wrote down the steps because I had to do it twice and got tired of combing through all of the websites I have searched looking for a fix to my problem.  Hopefully this helps, and try it at your own risk of course.
    Let me know if you try it and it works or not, good luck.

  • My ichat can never connect to the server when trying to start a video or audio chat

    my sisters both have macbooks and their ichat works perfectly fine so i dont think it's the router. what do i do?
    this is what shows up when it shows me the server cant connect:
    Date/Time:      2011-09-15 21:42:06.265 -0400
    OS Version:     10.5.8 (Build 9L31a)
    Report Version: 4
    iChat Connection Log:
    2011-09-15 21:41:10 -0400: AVChat started with ID 2871387792.
    2011-09-15 21:41:10 -0400: [email protected]: State change from AVChatNoState to AVChatStateWaiting.
    2011-09-15 21:41:10 -0400: 0x192705b0: State change from AVChatNoState to AVChatStateInvited.
    2011-09-15 21:41:23 -0400: 0x192705b0: State change from AVChatStateInvited to AVChatStateConnecting.
    2011-09-15 21:41:23 -0400: [email protected]: State change from AVChatStateWaiting to AVChatStateConnecting.
    2011-09-15 21:41:59 -0400: 0x192705b0: State change from AVChatStateConnecting to AVChatStateEnded.
    2011-09-15 21:41:59 -0400: 0x192705b0: Error -8 (Did not receive a response from 0x192705b0.)
    2011-09-15 21:41:59 -0400: [email protected]: State change from AVChatStateConnecting to AVChatStateEnded.
    2011-09-15 21:41:59 -0400: [email protected]: Error -8 (Did not receive a response from 0x192705b0.)
    Video Conference Error Report:
    22.479031 @SIP/SIP.c:2719 type=4 (900A0015/0)
    [SIPConnectIPPort failed]
    24.479732 @SIP/SIP.c:2719 type=4 (900A0015/0)
    [SIPConnectIPPort failed]
    31.481217 @SIP/SIP.c:2719 type=4 (900A0015/0)
    [SIPConnectIPPort failed]
    38.481756 @SIP/SIP.c:2719 type=4 (900A0015/0)
    [SIPConnectIPPort failed]
    45.483180 @SIP/SIP.c:2719 type=4 (900A0015/0)
    [SIPConnectIPPort failed]
    1088.514265 @SIP/SIP.c:2719 type=4 (900A0015/0)
    [SIPConnectIPPort failed]
    1095.514986 @SIP/SIP.c:2719 type=4 (900A0015/0)
    [SIPConnectIPPort failed]
    Video Conference Support Report:
    20.479259 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip SIP/2.0
    Via: SIP/2.0/UDP lip:16402;branch=z9hG4bK206f1a387d31bd64
    Max-Forwards: 70
    To: "u0" <sip:user@rip>
    From: "0" <sip:user@lip:16402>;tag=510872880
    Call-ID: 877849f6-e002-11e0-b415-dccf345c4012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@lip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 753
    v=0
    o=alexhoffmanhoffman 0 0 IN IP4 lip
    s=0
    c=IN IP4 lip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:2:2660
    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:2375367981
    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:249821262
    20.979536 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip SIP/2.0
    Via: SIP/2.0/UDP lip:16402;branch=z9hG4bK206f1a387d31bd64
    Max-Forwards: 70
    To: "u0" <sip:user@rip>
    From: "0" <sip:user@lip:16402>;tag=510872880
    Call-ID: 877849f6-e002-11e0-b415-dccf345c4012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@lip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 753
    v=0
    o=alexhoffmanhoffman 0 0 IN IP4 lip
    s=0
    c=IN IP4 lip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:2:2660
    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:2375367981
    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:249821262
    21.979823 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip SIP/2.0
    Via: SIP/2.0/UDP lip:16402;branch=z9hG4bK206f1a387d31bd64
    Max-Forwards: 70
    To: "u0" <sip:user@rip>
    From: "0" <sip:user@lip:16402>;tag=510872880
    Call-ID: 877849f6-e002-11e0-b415-dccf345c4012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@lip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 753
    v=0
    o=alexhoffmanhoffman 0 0 IN IP4 lip
    s=0
    c=IN IP4 lip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:2:2660
    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:2375367981
    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:249821262
    22.480077 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip SIP/2.0
    Via: SIP/2.0/UDP lip:16402;branch=z9hG4bK00013fae3573e689
    Max-Forwards: 70
    To: "u0" <sip:user@rip>
    From: "0" <sip:user@lip:16402>;tag=1398750256
    Call-ID: 88a996ea-e002-11e0-b415-f7c1d11f4012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@lip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 753
    v=0
    o=alexhoffmanhoffman 0 0 IN IP4 lip
    s=0
    c=IN IP4 lip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:2:2660
    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:2375367981
    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:249821262
    22.980343 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip SIP/2.0
    Via: SIP/2.0/UDP lip:16402;branch=z9hG4bK00013fae3573e689
    Max-Forwards: 70
    To: "u0" <sip:user@rip>
    From: "0" <sip:user@lip:16402>;tag=1398750256
    Call-ID: 88a996ea-e002-11e0-b415-f7c1d11f4012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@lip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 753
    v=0
    o=alexhoffmanhoffman 0 0 IN IP4 lip
    s=0
    c=IN IP4 lip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:2:2660
    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:2375367981
    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:249821262
    23.980616 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip SIP/2.0
    Via: SIP/2.0/UDP lip:16402;branch=z9hG4bK00013fae3573e689
    Max-Forwards: 70
    To: "u0" <sip:user@rip>
    From: "0" <sip:user@lip:16402>;tag=1398750256
    Call-ID: 88a996ea-e002-11e0-b415-f7c1d11f4012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@lip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 753
    v=0
    o=alexhoffmanhoffman 0 0 IN IP4 lip
    s=0
    c=IN IP4 lip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:2:2660
    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:2375367981
    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:249821262
    29.480558 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip SIP/2.0
    Via: SIP/2.0/UDP lip:16402;branch=z9hG4bK07a9055d1961210e
    Max-Forwards: 70
    To: "u0" <sip:user@rip>
    From: "0" <sip:user@lip:16402>;tag=1043407662
    Call-ID: 8cd5c978-e002-11e0-b415-eead114b4012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@lip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 753
    v=0
    o=alexhoffmanhoffman 0 0 IN IP4 lip
    s=0
    c=IN IP4 lip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:2:2660
    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:2375367981
    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:249821262
    29.980827 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip SIP/2.0
    Via: SIP/2.0/UDP lip:16402;branch=z9hG4bK07a9055d1961210e
    Max-Forwards: 70
    To: "u0" <sip:user@rip>
    From: "0" <sip:user@lip:16402>;tag=1043407662
    Call-ID: 8cd5c978-e002-11e0-b415-eead114b4012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@lip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 753
    v=0
    o=alexhoffmanhoffman 0 0 IN IP4 lip
    s=0
    c=IN IP4 lip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:2:2660
    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:2375367981
    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:249821262
    30.981099 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip SIP/2.0
    Via: SIP/2.0/UDP lip:16402;branch=z9hG4bK07a9055d1961210e
    Max-Forwards: 70
    To: "u0" <sip:user@rip>
    From: "0" <sip:user@lip:16402>;tag=1043407662
    Call-ID: 8cd5c978-e002-11e0-b415-eead114b4012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@lip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 753
    v=0
    o=alexhoffmanhoffman 0 0 IN IP4 lip
    s=0
    c=IN IP4 lip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:2:2660
    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:2375367981
    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:249821262
    36.482075 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip SIP/2.0
    Via: SIP/2.0/UDP lip:16402;branch=z9hG4bK3302795c60cfe795
    Max-Forwards: 70
    To: "u0" <sip:user@rip>
    From: "0" <sip:user@lip:16402>;tag=355861471
    Call-ID: 910220a0-e002-11e0-b415-afb820db4012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@lip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 753
    v=0
    o=alexhoffmanhoffman 0 0 IN IP4 lip
    s=0
    c=IN IP4 lip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:2:2660
    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:2375367981
    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:249821262
    36.982332 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip SIP/2.0
    Via: SIP/2.0/UDP lip:16402;branch=z9hG4bK3302795c60cfe795
    Max-Forwards: 70
    To: "u0" <sip:user@rip>
    From: "0" <sip:user@lip:16402>;tag=355861471
    Call-ID: 910220a0-e002-11e0-b415-afb820db4012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@lip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 753
    v=0
    o=alexhoffmanhoffman 0 0 IN IP4 lip
    s=0
    c=IN IP4 lip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:2:2660
    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:2375367981
    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:249821262
    37.982634 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip SIP/2.0
    Via: SIP/2.0/UDP lip:16402;branch=z9hG4bK3302795c60cfe795
    Max-Forwards: 70
    To: "u0" <sip:user@rip>
    From: "0" <sip:user@lip:16402>;tag=355861471
    Call-ID: 910220a0-e002-11e0-b415-afb820db4012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@lip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 753
    v=0
    o=alexhoffmanhoffman 0 0 IN IP4 lip
    s=0
    c=IN IP4 lip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:2:2660
    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:2375367981
    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:249821262
    43.482599 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip SIP/2.0
    Via: SIP/2.0/UDP lip:16402;branch=z9hG4bK75f468ed207264ac
    Max-Forwards: 70
    To: "u0" <sip:user@rip>
    From: "0" <sip:user@lip:16402>;tag=991858248
    Call-ID: 952e5068-e002-11e0-b415-af29ab8e4012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@lip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 753
    v=0
    o=alexhoffmanhoffman 0 0 IN IP4 lip
    s=0
    c=IN IP4 lip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:2:2660
    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:2375367981
    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:249821262
    43.982852 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip SIP/2.0
    Via: SIP/2.0/UDP lip:16402;branch=z9hG4bK75f468ed207264ac
    Max-Forwards: 70
    To: "u0" <sip:user@rip>
    From: "0" <sip:user@lip:16402>;tag=991858248
    Call-ID: 952e5068-e002-11e0-b415-af29ab8e4012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@lip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 753
    v=0
    o=alexhoffmanhoffman 0 0 IN IP4 lip
    s=0
    c=IN IP4 lip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:2:2660
    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:2375367981
    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:249821262
    44.983064 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip SIP/2.0
    Via: SIP/2.0/UDP lip:16402;branch=z9hG4bK75f468ed207264ac
    Max-Forwards: 70
    To: "u0" <sip:user@rip>
    From: "0" <sip:user@lip:16402>;tag=991858248
    Call-ID: 952e5068-e002-11e0-b415-af29ab8e4012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@lip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 753
    v=0
    o=alexhoffmanhoffman 0 0 IN IP4 lip
    s=0
    c=IN IP4 lip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:2:2660
    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:2375367981
    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:249821262
    1067.971060 @Video Conference/VCInitiateConference.m:1584 type=2 (00000000/0)
    [Connection Data for call id: 2 returns 1
    1075.493580 @Video Conference/VCInitiateConference.m:1599 type=2 (00000000/0)
    [Prepare Connection With Remote Data - remote VCConnectionData: 1, local VCConnectionData: 1
    1075.500103 @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]
    1086.513503 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP lip:16402;branch=z9hG4bK3ee85037704b8e9e
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=1623789713
    Call-ID: 02dee670-e005-11e0-b415-fc19c04a4012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@lip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 753
    v=0
    o=alexhoffmanhoffman 0 0 IN IP4 lip
    s=0
    c=IN IP4 lip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:2:2660
    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:2143342953
    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:121902296
    1087.013796 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP lip:16402;branch=z9hG4bK3ee85037704b8e9e
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=1623789713
    Call-ID: 02dee670-e005-11e0-b415-fc19c04a4012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@lip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 753
    v=0
    o=alexhoffmanhoffman 0 0 IN IP4 lip
    s=0
    c=IN IP4 lip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:2:2660
    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:2143342953
    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:121902296
    1088.014097 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP lip:16402;branch=z9hG4bK3ee85037704b8e9e
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=1623789713
    Call-ID: 02dee670-e005-11e0-b415-fc19c04a4012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@lip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 753
    v=0
    o=alexhoffmanhoffman 0 0 IN IP4 lip
    s=0
    c=IN IP4 lip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:2:2660
    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:2143342953
    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:121902296
    1093.515267 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:58631 SIP/2.0
    Via: SIP/2.0/UDP lip:16402;branch=z9hG4bK22cc23835fdca7cd
    Max-Forwards: 70
    To: "u0" <sip:user@rip:58631>
    From: "0" <sip:user@lip:16402>;tag=251216568
    Call-ID: 070b475c-e005-11e0-b415-85595d3a4012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@lip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 753
    v=0
    o=alexhoffmanhoffman 0 0 IN IP4 lip
    s=0
    c=IN IP4 lip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:2:2660
    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:2143342953
    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:121902296
    1094.015566 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:58631 SIP/2.0
    Via: SIP/2.0/UDP lip:16402;branch=z9hG4bK22cc23835fdca7cd
    Max-Forwards: 70
    To: "u0" <sip:user@rip:58631>
    From: "0" <sip:user@lip:16402>;tag=251216568
    Call-ID: 070b475c-e005-11e0-b415-85595d3a4012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@lip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 753
    v=0
    o=alexhoffmanhoffman 0 0 IN IP4 lip
    s=0
    c=IN IP4 lip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:2:2660
    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:2143342953
    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:121902296
    1095.015871 @SIP/Transport.c:2362 type=1 (00000000/0)
    [INVITE sip:user@rip:58631 SIP/2.0
    Via: SIP/2.0/UDP lip:16402;branch=z9hG4bK22cc23835fdca7cd
    Max-Forwards: 70
    To: "u0" <sip:user@rip:58631>
    From: "0" <sip:user@lip:16402>;tag=251216568
    Call-ID: 070b475c-e005-11e0-b415-85595d3a4012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@lip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 753
    v=0
    o=alexhoffmanhoffman 0 0 IN IP4 lip
    s=0
    c=IN IP4 lip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:2:2660
    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:2143342953
    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:121902296
    Video Conference User Report:
    0.000000 @:0 type=5 (00000000/16402)
    [Local SIP port]
    0.000023 @:0 type=5 (00000000/16402)
    [Local SIP port]
    10.158025 @Video Conference/VideoConferenceMultiController.m:1474 type=5 (00000000/0)
    [IP And Port Data With Caller IP And Port Data: Obtained 160 bytes of local IP and port data (4 entries).  Remote data was 480 bytes (12 entries).
    15.453917 @Video Conference/VideoConferenceMultiController.m:1507 type=5 (00000000/0)
    [Initiate Conference To User Cert Version: u0 with 480 bytes of connection data.
    1101.511239 @Video Conference/VideoConferenceMultiController.m:1474 type=5 (00000000/0)
    [IP And Port Data With Caller IP And Port Data: Obtained 160 bytes of local IP and port data (4 entries).  Remote data was 0 bytes (0 entries).
    Binary Images Description for "iChat":
        0x1000 -   0x23cfff com.apple.iChat 4.0.9 (622)          /Applications/iChat.app/Contents/MacOS/iChat
      0x2b1000 -   0x326fff com.apple.Bluetooth 2.1.9 (2.1.9f10)          /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
      0x375000 -   0x4a8fff com.apple.viceroy.framework 363.57 (363.59)          /System/Library/PrivateFrameworks/VideoConference.framework/Versions/A/Vid eoConference
      0x519000 -   0x558fff com.apple.vmutils 4.1 (104)          /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
      0x57a000 -   0x593fff com.apple.frameworks.preferencepanes 12.2          /System/Library/Frameworks/PreferencePanes.framework/Versions/A/Preference Panes
      0x5ad000 -   0x5dffff com.apple.remotedesktop.screensharing 1.0.3          /System/Library/PrivateFrameworks/ScreenSharing.framework/Versions/A/Scree nSharing
      0x5f2000 -   0x606fff com.apple.ScreenSaver 2.2          /System/Library/Frameworks/ScreenSaver.framework/Versions/A/ScreenSaver
      0x617000 -   0x635fff libexpat.1.dylib           /usr/lib/libexpat.1.dylib
      0x63d000 -   0x66ffff com.apple.iChatCommonGUI 4.0.9 (622)          /System/Library/PrivateFrameworks/iChatCommonGUI.framework/iChatCommonGUI
      0x69a000 -   0x69cfff com.apple.BezelServicesFW 1.4.9212          /System/Library/PrivateFrameworks/BezelServices.framework/Versions/A/Bezel Services
      0x6f4000 -   0x6f9fff com.apple.iChat.Styles.Balloons 4.0.9 (622)          /Applications/iChat.app/Contents/PlugIns/Balloons.transcriptstyle/Contents /MacOS/Balloons
    0x119e6000 - 0x119e9fff com.apple.iChat.Styles.Boxes 4.0.9 (622)          /Applications/iChat.app/Contents/PlugIns/Boxes.transcriptstyle/Contents/Ma cOS/Boxes
    0x119f0000 - 0x119f6fff com.apple.iChat.Styles.Compact 4.0.9 (622)          /Applications/iChat.app/Contents/PlugIns/Compact.transcriptstyle/Contents/ MacOS/Compact
    0x119fe000 - 0x11a00fff com.apple.iChat.Styles.Text 4.0.9 (622)          /Applications/iChat.app/Contents/PlugIns/Text.transcriptstyle/Contents/Mac OS/Text
    0x1452c000 - 0x14535fff com.apple.IOFWDVComponents 1.9.5          /System/Library/Components/IOFWDVComponents.component/Contents/MacOS/IOFWD VComponents
    0x1454c000 - 0x1454ffff com.apple.audio.AudioIPCPlugIn 1.0.6          /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPC PlugIn.bundle/Contents/MacOS/AudioIPCPlugIn
    0x145bf000 - 0x145c2fff com.divx.divxtoolkit 1.0          /Library/Frameworks/DivX Toolkit.framework/Versions/A/DivX Toolkit
    0x145c7000 - 0x14602fff com.apple.QuickTimeFireWireDV.component 7.7 (1680.28)          /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/Qui ckTimeFireWireDV
    0x1460f000 - 0x14615fff com.apple.audio.AppleHDAHALPlugIn 1.7.1 (1.7.1a2)          /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugI n.bundle/Contents/MacOS/AppleHDAHALPlugIn
    0x14800000 - 0x14af9fff com.apple.RawCamera.bundle 2.3.0 (505)          /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x15d18000 - 0x15d70fff com.DivXInc.DivXDecoder 6.8.4.3 (6.8.4)          /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
    0x15d94000 - 0x15dc2fff com.apple.QuickTimeIIDCDigitizer 7.7 (1680.28)          /System/Library/QuickTime/QuickTimeIIDCDigitizer.component/Contents/MacOS/ QuickTimeIIDCDigitizer
    0x15dcd000 - 0x15e1bfff com.apple.QuickTimeUSBVDCDigitizer 2.3.2          /System/Library/QuickTime/QuickTimeUSBVDCDigitizer.component/Contents/MacO S/QuickTimeUSBVDCDigitizer
    0x15e29000 - 0x15e45fff com.apple.opengl 1.5.10          /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendere rFloat.bundle/GLRendererFloat
    0x16100000 - 0x16285fff com.apple.opengl 1.5.10          /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEn gine
    0x162b3000 - 0x16591fff com.apple.ATIRadeonX2000GLDriver 1.5.48 (5.4.8)          /System/Library/Extensions/ATIRadeonX2000GLDriver.bundle/Contents/MacOS/AT IRadeonX2000GLDriver
    0x1776a000 - 0x1796efff com.apple.audio.codecs.Components 1.9.1          /System/Library/Components/AudioCodecs.component/Contents/MacOS/AudioCodec s
    0x17b32000 - 0x17b35fff com.apple.iokit.IOQTComponents 1.6          /System/Library/Components/IOQTComponents.component/Contents/MacOS/IOQTCom ponents
    0x180f5000 - 0x180fafff com.apple.CoreGraphics 1.409.8 (???)          /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew orks/CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x18141000 - 0x18142fff com.apple.JavaPluginCocoa 12.9.0          /System/Library/Frameworks/JavaVM.framework/Versions/A/JavaPluginCocoa.bun dle/Contents/MacOS/JavaPluginCocoa
    0x18643000 - 0x18647fff com.apple.JavaLaunching 12.9.0          /System/Library/PrivateFrameworks/JavaLaunching.framework/Versions/A/JavaL aunching
    0x1864e000 - 0x1864ffff com.apple.iChat.PersonIconPlugIn 4.0.9 (622)          /Applications/iChat.app/Contents/PlugIns/PersonIcon.plugin/Contents/MacOS/ PersonIcon
    0x19c01000 - 0x19c27fff com.noiseindustries.Units ??? (1.2.1)          /Users/alexhoffmanhoffman/Library/Graphics/Image Units/Noise Industries Units.plugin/Contents/MacOS/Noise Industries Units
    0x19d48000 - 0x19d64fff com.apple.QuartzComposer.ExtraPatches 2.1 (106.13)          /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCo mposer.framework/Versions/A/Resources/ExtraPatches.plugin/Contents/MacOS/ExtraPa tches
    0x19fa5000 - 0x19fc2fff com.apple.audio.midi.CoreMIDI 1.6.1 (42)          /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
    0x1a00b000 - 0x1a00bfff liblangid.dylib           /usr/lib/liblangid.dylib
    0x1a01b000 - 0x1a028fff com.apple.QuartzComposer.Backdrops 1.1          /System/Library/Graphics/Quartz Composer Patches/Backdrops.plugin/Contents/MacOS/Backdrops
    0x8fe00000 - 0x8fe2dfff dyld           /usr/lib/dyld
    0x900f8000 - 0x900f8fff com.apple.ApplicationServices 34          /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Applic ationServices
    0x900f9000 - 0x90118fff com.apple.ImageIO.framework 2.0.9          /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew orks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x90119000 - 0x90134fff com.apple.ImageIO.framework 2.0.9          /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew orks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x90135000 - 0x9021dfff com.apple.CoreData 100.2 (186.2)          /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x9021e000 - 0x90223fff com.apple.KerberosHelper 1.1 (1.0)          /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/Kerb erosHelper
    0x90224000 - 0x90f92fff com.apple.WebCore 5534 (5534.50.1)          /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore. framework/Versions/A/WebCore
    0x90f93000 - 0x90fa1fff libz.1.dylib           /usr/lib/libz.1.dylib
    0x90fa2000 - 0x90ff0fff com.apple.AppleVAFramework 4.1.17          /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x90ff1000 - 0x91040fff com.apple.QuickLookUIFramework 1.3.1 (170.9)          /System/Library/PrivateFrameworks/QuickLookUI.framework/Versions/A/QuickLo okUI
    0x91041000 - 0x910b3fff com.apple.PDFKit 2.1.2          /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.f ramework/Versions/A/PDFKit
    0x910b4000 - 0x910d8fff libxslt.1.dylib           /usr/lib/libxslt.1.dylib
    0x910d9000 - 0x9120cfff com.apple.CoreFoundation 6.5.7 (476.19)          /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundat ion
    0x9120d000 - 0x91489fff com.apple.Foundation 6.5.9 (677.26)          /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x9148a000 - 0x914cefff com.apple.DirectoryService.PasswordServerFramework 3.0.4          /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/Pass wordServer
    0x914cf000 - 0x914dafff com.apple.CoreGraphics 1.409.8 (???)          /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew orks/CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x914db000 - 0x914ebfff com.apple.speech.synthesis.framework 3.7.1          /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew orks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x914ec000 - 0x9157ffff com.apple.ink.framework 101.3 (86)          /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.fram ework/Versions/A/Ink
    0x91580000 - 0x918abfff com.apple.QuickTime 7.7 (1680.28)          /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x918ac000 - 0x91bb4fff com.apple.HIToolbox 1.5.6 (???)          /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbo x.framework/Versions/A/HIToolbox
    0x91bb5000 - 0x91c28fff com.apple.iLifeMediaBrowser 2.1.5 (368)          /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/i LifeMediaBrowser
    0x91c29000 - 0x91c5afff com.apple.quartzfilters 1.5.0          /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFi lters.framework/Versions/A/QuartzFilters
    0x91c5b000 - 0x91c5cfff libffi.dylib           /usr/lib/libffi.dylib
    0x91c5d000 - 0x91c69fff com.apple.opengl 1.5.10          /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dyl ib
    0x91c6a000 - 0x91c82fff com.apple.openscripting 1.2.8 (???)          /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScri pting.framework/Versions/A/OpenScripting
    0x91c83000 - 0x91d4afff com.apple.vImage 3.0          /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vIma ge.framework/Versions/A/vImage
    0x91d4b000 - 0x91d68fff com.apple.QuickLookFramework 1.3.1 (170.9)          /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x91d69000 - 0x91e49fff libobjc.A.dylib           /usr/lib/libobjc.A.dylib
    0x91e4a000 - 0x91ec7fff com.apple.audio.CoreAudio 3.1.2          /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x91ec8000 - 0x91efafff com.apple.LDAPFramework 1.4.5 (110)          /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x91efb000 - 0x91f57fff com.apple.htmlrendering 68 (1.1.3)          /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRend ering.framework/Versions/A/HTMLRendering
    0x91f58000 - 0x920e7fff com.apple.CoreAUC 3.08.0          /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x920e8000 - 0x92106fff libresolv.9.dylib           /usr/lib/libresolv.9.dylib
    0x92107000 - 0x92141fff com.apple.coreui 1.2 (62)          /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x92142000 - 0x921e9fff com.apple.QD 3.11.57 (???)          /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew orks/QD.framework/Versions/A/QD
    0x921ea000 - 0x922cbfff libxml2.2.dylib           /usr/lib/libxml2.2.dylib
    0x922cc000 - 0x9268afff com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2)          /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecL ib.framework/Versions/A/libLAPACK.dylib
    0x9268b000 - 0x926cafff com.apple.ImageIO.framework 2.0.9          /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew orks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x926cb000 - 0x9281dfff com.apple.audio.toolbox.AudioToolbox 1.5.3          /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x9281e000 - 0x92985fff libSystem.B.dylib           /usr/lib/libSystem.B.dylib
    0x92a50000 - 0x92b6dfff com.apple.WebKit 5534 (5534.50.2)          /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x92b6e000 - 0x92bebfff com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2)          /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecL ib.framework/Versions/A/libvMisc.dylib
    0x92bef000 - 0x92bfbfff com.apple.helpdata 1.0.1 (14.2)          /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x92c01000 - 0x92c04fff com.apple.help 1.1 (36)          /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.fra mework/Versions/A/Help
    0x92c05000 - 0x92fa2fff com.apple.QuartzCore 1.5.8          /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x92fb0000 - 0x92fb0fff com.apple.Carbon 136          /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92fb1000 - 0x92fb5fff libmathCommon.A.dylib           /usr/lib/system/libmathCommon.A.dylib
    0x92fb6000 - 0x9303dfff libsqlite3.0.dylib           /usr/lib/libsqlite3.0.dylib
    0x9303e000 - 0x9309bfff libstdc++.6.dylib           /usr/lib/libstdc++.6.dylib
    0x9309c000 - 0x930f5fff com.apple.opengl 1.5.10          /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dy lib
    0x930f6000 - 0x930fbfff com.apple.DisplayServicesFW 2.0.2          /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/Dis playServices
    0x930fc000 - 0x930fcfff com.apple.installserver.framework 1.0 (8)          /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/Insta llServer
    0x930fd000 - 0x93119fff com.apple.IMFramework 4.0.8 (584)          /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMess age
    0x9311a000 - 0x9311afff com.apple.vecLib 3.4.2 (vecLib 3.4.2)          /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x9311b000 - 0x9311dfff com.apple.CrashReporterSupport 10.5.7 (161)          /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/ A/CrashReporterSupport
    0x93128000 - 0x93128fff com.apple.CoreServices 32          /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x93129000 - 0x93145fff com.apple.CoreVideo 1.6.1 (48.6)          /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x93146000 - 0x9314dfff libgcc_s.1.dylib           /usr/lib/libgcc_s.1.dylib
    0x9314e000 - 0x931cdfff com.apple.SearchKit 1.2.2          /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Se archKit.framework/Versions/A/SearchKit
    0x931ce000 - 0x93307fff libicucore.A.dylib           /usr/lib/libicucore.A.dylib
    0x9333b000 - 0x9334afff com.apple.DSObjCWrappers.Framework 1.3          /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSOb jCWrappers
    0x9334b000 - 0x93396fff com.apple.securityinterface 3.0.4 (37213)          /System/Library/Frameworks/SecurityInterface.framework/Versions/A/Security Interface
    0x93397000 - 0x933e8fff com.apple.framework.familycontrols 1.0.4          /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/Fami lyControls
    0x933e9000 - 0x933f8fff libsasl2.2.dylib           /usr/lib/libsasl2.2.dylib
    0x933f9000 - 0x942f9fff com.apple.QuickTimeComponents.component 7.7 (1680.28)          /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/Qui ckTimeComponents
    0x942fa000 - 0x9430bfff com.apple.CFOpenDirectory 10.5          /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/Frame works/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
    0x9430c000 - 0x946c8fff com.apple.VideoToolbox 0.484.2 (484.2)          /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoT oolbox
    0x946c9000 - 0x9472ffff com.apple.ISSupport 1.8 (38.3)          /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x94730000 - 0x9477bfff com.apple.CoreMediaIOServices 140.0 (1492)          /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A /CoreMediaIOServices
    0x9477c000 - 0x9477cfff com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2)          /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecL ib.framework/Versions/A/vecLib
    0x9477d000 - 0x94781fff com.apple.ImageIO.framework 2.0.9          /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew orks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x94787000 - 0x94b97fff com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2)          /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecL ib.framework/Versions/A/libBLAS.dylib
    0x94b98000 - 0x94b9efff com.apple.print.framework.Print 218.0.3 (220.2)          /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.fr amework/Versions/A/Print
    0x94b9f000 - 0x94bc8fff libcups.2.dylib           /usr/lib/libcups.2.dylib
    0x94bc9000 - 0x94c94fff com.apple.ColorSync 4.5.4          /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew orks/ColorSync.framework/Versions/A/ColorSync
    0x94c95000 - 0x95493fff com.apple.AppKit 6.5.9 (949.54)          /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x956fd000 - 0x95706fff com.apple.speech.recognition.framework 3.7.24          /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRe cognition.framework/Versions/A/SpeechRecognition
    0x95707000 - 0x957aefff com.apple.CFNetwork 438.16          /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CF Network.framework/Versions/A/CFNetwork
    0x957af000 - 0x957defff com.apple.AE 402.3          /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE .framework/Versions/A/AE
    0x957df000 - 0x957effff com.apple.LangAnalysis 1.6.5          /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew orks/LangAnalysis.framework/Versions/A/LangAnalysis
    0x957f0000 - 0x957fafff com.apple.audio.SoundManager 3.9.2          /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSo und.framework/Versions/A/CarbonSound
    0x957fb000 - 0x95819fff com.apple.DirectoryService.Framework 3.5.7          /System/Library/Frameworks/DirectoryService.framework/Versions/A/Directory Service
    0x9581a000 - 0x958a7fff com.apple.LaunchServices 292          /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/La unchServices.framework/Versions/A/LaunchServices
    0x958a8000 - 0x95959fff edu.mit.Kerberos 6.0.15          /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x9595a000 - 0x9595afff com.apple.quartzframework 1.5          /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x95985000 - 0x959c5fff com.apple.CoreMedia 0.484.2 (484.2)          /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x959c6000 - 0x95a40fff com.apple.print.framework.PrintCore 5.5.4 (245.6)          /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew orks/PrintCore.framework/Versions/A/PrintCore
    0x95a41000 - 0x95a6efff com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2)          /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecL ib.framework/Versions/A/libvDSP.dylib
    0x95a9f000 - 0x95c23fff com.apple.MediaToolbox 0.484.2 (484.2)          /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaT oolbox
    0x95c24000 - 0x95c26fff com.apple.securityhi 3.0 (30817)          /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Security HI.framework/Versions/A/SecurityHI
    0x95c27000 - 0x95c3dfff com.apple.DictionaryServices 1.0.0          /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Di ctionaryServices.framework/Versions/A/DictionaryServices
    0x95c3e000 - 0x95d2cfff com.apple.PubSub 1.0.5 (65.23)          /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x95e91000 - 0x95ebcfff libauto.dylib           /usr/lib/libauto.dylib
    0x95ebd000 - 0x95ee5fff com.apple.shortcut 1.0.1 (1.0)          /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x95ee6000 - 0x95ef3fff com.apple.opengl 1.5.10          /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x95f31000 - 0x9620bfff com.apple.CoreServices.CarbonCore 786.16          /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Ca rbonCore.framework/Versions/A/CarbonCore
    0x9620c000 - 0x9620cfff com.apple.Accelerate 1.4.2 (Accelerate 1.4.2)          /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x9620d000 - 0x9638dfff com.apple.AddressBook.framework 4.1.2 (702)          /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x9638e000 - 0x9638efff com.apple.audio.units.AudioUnit 1.5          /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x9638f000 - 0x963c9fff com.apple.securityfoundation 3.0.2 (36131)          /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/Securit yFoundation
    0x96438000 - 0x9643afff com.apple.ImageIO.framework 2.0.9          /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew orks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x96447000 - 0x9665efff com.apple.JavaScriptCore 5534 (5534.49)          /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptC ore
    0x9665f000 - 0x96711fff libcrypto.0.9.7.dylib           /usr/lib/libcrypto.0.9.7.dylib
    0x96712000 - 0x96717fff com.apple.backup.framework 1.0          /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x96718000 - 0x967bcfff com.apple.QuickTimeImporters.component 7.7 (1680.28)          /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/Quic kTimeImporters
    0x967bd000 - 0x967d4fff com.apple.datadetectors 1.0.1 (66.2)          /System/Library/PrivateFrameworks/DataDetectors.framework/Versions/A/DataD etectors
    0x967d5000 - 0x96817fff com.apple.NavigationServices 3.5.2 (163)          /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Navigati onServices.framework/Versions/A/NavigationServices
    0x9684d000 - 0x96eedfff com.apple.CoreGraphics 1.409.8 (???)          /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew orks/CoreGraphics.framework/Versions/A/CoreGraphics
    0x96eee000 - 0x97026fff com.apple.imageKit 1.0.2 (1.0)          /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit .framework/Versions/A/ImageKit
    0x97027000 - 0x97075fff com.apple.datadetectorscore 1.0.2 (52.14)          /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/D ataDetectorsCore
    0x97076000 - 0x97076fff com.apple.Cocoa 6.5 (???)          /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x9715a000 - 0x97316fff com.apple.QuartzComposer 2.1 (106.13)          /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCo mposer.framework/Versions/A/QuartzComposer
    0x97317000 - 0x97371fff com.apple.CoreText 2.0.5 (???)          /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew orks/CoreText.framework/Versions/A/CoreText
    0x97372000 - 0x974bcfff com.apple.QTKit 7.7 (1680.28)          /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x974bd000 - 0x974c5fff com.apple.DiskArbitration 2.2.1          /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitr ation
    0x974c6000 - 0x974cdfff com.apple.CoreGraphics 1.409.8 (???)          /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew orks/CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x974ce000 - 0x974cefff com.apple.MonitorPanelFramework 1.2.0          /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/Monito rPanel
    0x974cf000 - 0x97520fff com.apple.HIServices 1.7.1 (???)          /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew orks/HIServices.framework/Versions/A/HIServices
    0x97521000 - 0x97545fff libssl.0.9.7.dylib           /usr/lib/libssl.0.9.7.dylib
    0x97546000 - 0x9768ffff com.apple.ImageIO.framework 2.0.9          /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew orks/ImageIO.framework/Versions/A/ImageIO
    0x97690000 - 0x976a5fff com.apple.ImageCapture 5.0.2          /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCap ture.framework/Versions/A/ImageCapture
    0x976a6000 - 0x97730fff com.apple.DesktopServices 1.4.9          /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A /DesktopServicesPriv
    0x97731000 - 0x9777afff com.apple.Metadata 10.5.8 (

    Hi Bill
    You say your sister is at college, they could be blocking ports thats why the error 8.
    Does she go though the college's network.
    Ask her to ask the IT guys if they block ports.
    Tony

  • In history i have given forget about the site. when i open firefox if i give a letter example:k means the website which i give forget is opening.so what can i do for this.

    for example when i give yahoo means if i give about that site after when i firefox if i gives y means the yahoo will starting appear.

    See comments 17,44,63,71:
    * [https://bugzilla.mozilla.org/show_bug.cgi?id=627729 Bug 627729] - Hotmail web page continually reloads every second
    ''(please do not comment in bug reports; you can vote instead)''

Maybe you are looking for

  • Default values in module pool screen issue

    Hello, I have 6 input fields in one of my module pool tab-strip. I can able to populate default values in 4 fields, but 2 fields are not showing default value on the screen. I am passing these default value for all 6 fields in PBO module of that scre

  • DVI ports too close together

    HI, I tried to connect a second display to my Mac Pro (early 2008) last night and it seems that the DVI ports are too close together and I am unable to fit a second DVI cable in the open port. It's very odd, the 2 ports are shifted to the right and n

  • Addition of values after allocation logic instead of overwrite 7.50.05 NW

    Hi Gurus I am writing an allocation logic where I am allocating some values in a ratio of sales. but there is already some value in the fields i am allocating into and after this logic, the new vales are overwriting the existing one. But my requireme

  • Table displays wrong at specific site - intermittent but stubborn

    in v4.0b1 - The "Name" column is compressed while there is a *lot* of unused white space to the right of the table. It is intermittent and frequently an F5 reload will fix the problem and the table will expand to fill available white space. It normal

  • "could not complete your request because an unexpected end-of-file was encountered. what can i do?

    I've been working on a motion file in photoshop for my thesis and i tried opeining it today and it wont let me open the file. it says "could not complete your request because an unexpected end-of-file was encountered". I've saved the file every 5 min