"vcencoder" process slowing video chats

During all video chats my Macbook begins to heat up, the fan kicks into gear and friends on the other line tell me my video quality is degraded. My processor seems to be getting overloaded, and I've discovered that the "vcencoder" process is eating up 40-70% of my power, while the "ichat" process itself wants another 50% or so.
Is this normal? Is there any way to not have my machine overloaded like this?
I've tried rebooting and even reinstalling iChat, but to no avail.

Did you use ChatFX or ShowMacster Add-ons in iChat 3 ?
Have you deleted them ?
10.4.10 broke ChatFX and it should have been deleted then.
I take it this never fails with an Error log number ?
Can you check Users/(your account)/Library/Logs/iChatConnectionsErrors and see if you have any since upgrading to Leopard.
If you Open one it will open in Console and drop to the Bottom of the Log.
It is likely to be very long.
The bottom is all the Binary Images info of what was open at the time
It will list at the top of that section what was involved in iChat's start up.
SO at the start of the Binary Images does it mention in the first 5 or 6 lines anything about the Add-Ons I mention ?
10:23 PM Tuesday; February 26, 2008

Similar Messages

  • Slow video chat

    My video chat is constantly breaking up or freezing. It can't be a bandwidth issue because I have ichat set to no restriction and have no problem downloading large files and buffering videos.
    I would really like to fix this though.

    Hi Basekick88,
    Have you got Apple Remote Desktop active in System Preferences > Sharing > Services ?
    Also check the item in the table here http://www.ralphjohnsuk.dsl.pipex.com/page16.html
    11:47 PM Sunday; February 18, 2007

  • Video Slows Down Dramatically At Start of Video Chat Session

    When starting a video chat with mate, my video starts fine and then quickly slows down to virtually nothing. Video of me is good in preview but when I start a video chat with mate, it all goes down hill. Connection Doctor tells me my framerate is 1 fps. Why does video speed deteriorate so quickly after video chat is started? Any advice would be most helpful here. Apple Tech Support says its likely to be a software issue. I though upgrade to 10.4.5 would help: it didn't. Anyone out there experiencing the same thing??
    i-Mac G5   Mac OS X (10.4.5)  

    Hi ogorki,
    Welcome to the Apple Discussion Pages.
    See this FAQ for more on what Defcom says
    http://discussions.apple.com/thread.jspa?threadID=278760&tstart=0
    Most likely cause is Updating from Panther rather than a fresh install.
    One other thing not in the FAQ.
    Open Activity Monitir from Applications/Utilities.
    Make sure All Processes is slected in the top drop down.
    Check to se if a Print Manager is listed as running even when you are not printing.
    If it is highlight it by clicking on it once.
    Use the Big red stop button top left and Force Quit.
    2:16 PM Sunday; February 19, 2006
    iChat Resouce Web pages

  • I updated to Mavericks and video streaming is slower and I can't video chat using the Messages app. How do I fix this?

    I know people also have been having this trouble with the Facebook videochat, but it's also with the iChat replacement too. Any advice?

    Hi,
    In Messages > Preferences > Video section > Bandwidth drop down try setting the speed to 500kbps
    This is faster then the min for  4 way video chats but can slow the chat to a more common speed.
    Basically as internet speeds have increased the differences between two buddies can be greater.
    Using slower speeds can be a more common area of speed.
    It can also help when ISPs tried to combat Peer-to-Peer file sharing and slow down your service.
    Video chats are Peer-to-Peer and the ISPs can't tell the difference.
    11:32 pm      Saturday; November 2, 2013
      iMac 2.5Ghz 5i 2011 (Mavericks 10.9)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
     Couple of iPhones and an iPad

  • Video Chat on Android very slow !

    Hi everyone,
    I'm developing an audio/video chat Android application. On my Android device (Samsung Galaxy S), all works... but it is very very slow !!
    I launch the application (release version) on my phone and then I launch this application from my computer (from Flash Builder)
    Each applications are connected to the Cirrus server and streams are sent/received. On my computer, no problem. But on my phone, the CPU usage grows immediatly (>90 % !) and the app finish to crash.
    Before I click on the "connect" button : RAM 26 mb / CPU 0.33% (great !)
    When I publish my audio/video via NetStream : RAM 42 mb / CPU 64%
    When I publish AND receive an audio/video NetStream : RAM 48 mb / CPU 94%
    By the way, my phone is getting hot...
    I know that this could be done without such performance problems on Android. The proof : http://coenraets.org/blog/2010/07/video-chat-for-android-in-30-lines-of-code/
    Yes, LCCS is use here by C. Coenraets, but LCCS is nothing but a NetConnection/NetStream and a RTMFP solution... So what am i doing wrong ? Any help would be very appreciated.
    I paste here the code (firstView of the ViewNavigatorApplication) :
    <?xml version="1.0" encoding="utf-8"?>
    <s:View xmlns:fx="http://ns.adobe.com/mxml/2009"
                        xmlns:s="library://ns.adobe.com/flex/spark" title="HomeView" xmlns:mx="library://ns.adobe.com/flex/mx" actionBarVisible="false">
              <fx:Script>
                        <![CDATA[
                                   * Tezqa | [email protected] | www.tezqa.com
                                  private var SERVER:String = "rtmfp://p2p.rtmfp.net/";
                                  private var KEY:String = "CIRRUS DEVELOPER KEY";
                                  private var netConnection:NetConnection;
                                  private var netStreamPublisher:NetStream;
                                  private var netStreamSubscriber:NetStream;
                                  private var groupSpecifier:GroupSpecifier;
                                  private var camera:Camera;
                                  private var microphone:Microphone;
                                  private var videoPublisher:Video;
                                  private var videoSubscriber:Video;
                                  private var username:String;
                                  private var budyname:String;
                                  [Bindable] private var connected:Boolean = false;
                                  private function startStop():void {
                                            if (connected) {
                                                      disconnect();
                                            } else {
                                                      username = usernameInput.text;
                                                      budyname = budynameInput.text;
                                                      connect();
                                  private function connect():void {
                                            netConnection = new NetConnection();
                                            netConnection.addEventListener(NetStatusEvent.NET_STATUS, netStatus);
                                            netConnection.connect (SERVER, KEY);
                                  private function onConnect():void {
                                            connected = true;
                                            groupSpecifier = new GroupSpecifier ("com.tezqa.mobilecam");
                                            groupSpecifier.multicastEnabled = true;
                                            groupSpecifier.postingEnabled = true;
                                            groupSpecifier.serverChannelEnabled = true;
                                            netStreamPublisher = new NetStream (netConnection, groupSpecifier.groupspecWithAuthorizations());
                                            netStreamPublisher.addEventListener (NetStatusEvent.NET_STATUS, netStatus);
                                            attachCamera();
                                            attachMicrophone();
                                            netStreamPublisher.publish ("stream_" + username, "live");
                                            videoPublisher = new Video(uic1.width, uic1.height);
                                            videoPublisher.attachCamera(camera);
                                            uic1.addChild(videoPublisher);
                                            netStreamSubscriber = new NetStream (netConnection, groupSpecifier.groupspecWithAuthorizations());
                                            netStreamSubscriber.addEventListener (NetStatusEvent.NET_STATUS, netStatus);
                                            netStreamSubscriber.play ("stream_" + budyname);
                                            videoSubscriber = new Video(uic2.width, uic2.height);
                                            videoSubscriber.attachNetStream(netStreamSubscriber);
                                            uic2.addChild(videoSubscriber);
                                  public function attachMicrophone():void {
                                            microphone = null;
                                            netStreamPublisher.attachAudio (null);
                                            microphone = Microphone.getEnhancedMicrophone();
                                            if (!microphone) microphone = Microphone.getMicrophone();
                                            if (microphone) {
                                                      microphone.codec = SoundCodec.SPEEX;
                                                      microphone.framesPerPacket = 1;
                                                      microphone.setSilenceLevel(0, 3000);
                                                      microphone.gain = 100;
                                                      microphone.rate = 22;
                                                      netStreamPublisher.attachAudio (microphone);
                                  public function detachMicrophone():void {
                                            netStreamPublisher.attachAudio (null);
                                            microphone = null;
                                  public function attachCamera(cameraPosition:String = "auto"):Camera {
                                            camera = null;
                                            netStreamPublisher.attachCamera(null);
                                            if (cameraPosition == "auto") {
                                                      camera = Camera.getCamera();
                                            } else {
                                                      if (Camera.names.length == 1) {
                                                                camera = Camera.getCamera();
                                                      } else {
                                                                var tmpCamera:Camera = null;
                                                                for (var i:uint = 0; i < Camera.names.length; i++) {
                                                                          tmpCamera = Camera.getCamera(Camera.names[i]);
                                                                          if (tmpCamera.position == cameraPosition) {
                                                                                    camera = tmpCamera;
                                                                                    break;
                                            if (camera) {
                                                      camera.setMode (640, 480, 15, true);
                                                      camera.setQuality (15000, 0); // 30000, 0 (adobe settings)
                                                      netStreamPublisher.attachCamera (camera);
                                                      return camera;
                                            } else {
                                                      return null;
                                  public function detachCamera():void {
                                            netStreamPublisher.attachCamera (null);
                                            camera = null;
                                  private function disconnect():void {
                                            detachCamera();
                                            detachMicrophone();
                                            netStreamPublisher.close();
                                            netStreamSubscriber.close();
                                            netStreamPublisher.removeEventListener(NetStatusEvent.NET_STATUS, netStatus);
                                            netStreamSubscriber.removeEventListener(NetStatusEvent.NET_STATUS, netStatus);
                                            netConnection.removeEventListener(NetStatusEvent.NET_STATUS, netStatus);
                                            netStreamPublisher = null;
                                            netStreamSubscriber = null;
                                            netConnection = null;
                                            videoPublisher.clear();
                                            videoPublisher.attachCamera(null);
                                            videoSubscriber.clear();
                                            uic1.removeChild(videoPublisher);
                                            uic2.removeChild(videoSubscriber);
                                            videoPublisher = null;
                                            videoSubscriber = null;
                                            connected = false;
                                  private function netStatus(e:NetStatusEvent):void {
                                            switch(e.info.code) {
                                                      case "NetConnection.Connect.Success":
                                                                onConnect();
                                                                break;
                                                      default:
                                                                break;
                        ]]>
              </fx:Script>
              <s:VGroup width="100%" height="100%">
                        <s:HGroup width="100%" height="100%">
                                  <mx:UIComponent id="uic1" width="50%" height="100%"/>
                                  <mx:UIComponent id="uic2" width="50%" height="100%"/>
                        </s:HGroup>
                        <s:Label text="Connected : {connected}" paddingLeft="10"/>
                        <s:HGroup width="100%" horizontalAlign="center" verticalAlign="middle" paddingBottom="10">
                                  <s:TextInput id="usernameInput" prompt="Enter your name" text="lug" width="35%"/>
                                  <s:TextInput id="budynameInput" prompt="Enter budy name" text="kat" width="35%"/>
                                  <s:Button label="{connected?'Disconnect':'Connect'}" click="startStop()"/>
                        </s:HGroup>
              </s:VGroup>
    </s:View>

    Ok my microphone and camera settings were bad.
    I comment out these lines :
                                                      microphone.codec = SoundCodec.SPEEX;
                                                      microphone.framesPerPacket = 1;
                                                      microphone.setSilenceLevel(0, 3000);
                                                      microphone.gain = 100;
                                                      microphone.rate = 22;
    //camera.setMode (640, 480, 15, true);
                                                      //camera.setQuality (15000, 0); // 30000, 0 (adobe settings)
    Then the application works better, but still use CPU at 80-90% after a while... And finish to crash. Any idea ?

  • Why can't I get the Audi-video chat started?

    My step-daughter and I have iSight cameras and Macintosh Computers with iChat installed. On Friday afternoon we tried to start a video-chat. I heard by phone, that we were both trying to get in touch with each other at the same time.
    • I was able to get my step-daughter entered as one of my ‘Buddies’. There is a Buddy List and her name is there, correctly. Though I have to add her name, from my address book, each time I close iChat down.
    • The rectangular menu has the following icons at the bottom A, a telephone icon & a video-camera ‘greyed out’. I do not see why I cannot blacken them.
    • When my step-daughter succeeded in getting her camera turned on (see could see herself on her computer screen) I double-clicked on the video-camera part of her name card in the buddy list.
    • Miraculously, but ultimately disappointingly, the process of trying to contact my step-daughter began. Another view of my camera picture appeared, the rotating ‘stop-clock’ type icon began spinning for about ten seconds. The message setting up video-chat changed to tell me that the attempt to establish a video-chat had failed because I had failed to respond.
    • But I had no indication of how to respond. Minutes later I was able to establish a chat with my step-daughter with text. If I can establish textual contact, why not audiovisual?
    • I take it the use of Bonjour is the way to go rather than aim.
    iMac G4   Mac OS X (10.4.5)  

    I'm not sure how to add to my own topic, or I'm supposed to... but here goes.
    One thought as to why text messages will work and Audio Video won't has to do with broadband speed. I checked my Internet Service Provider website (Cable & Wireless in the Cayman Islands) and they have a way of 'Testing Your Broadband Speed'.
    I tried that and although I could not print the results, the test told me that my download speed is 1.3 mb and my upload speed is 553 kb. I haven't a clue if that is fast, slow or something in between. however, page 3 of the iChat brochure (videoconferencing for the rest of us) http://www.apple.com/macosx/features/ichat/ said that to initiate or participate in a 1 to 1 video conference the bandwidth required is 100 kbps. I've got that, right?
    Another thoughtthat I had was that my step-daughter may not have 'Full .Mac membership', she may just be 'on trial'. I'll ask her and if that's the case it's problem solved, see page one of http://www.mac.com/1/ichat.html.
    Router doubts have been dispelled. I have a Netopia not a Belkin. A troubleshooting piece from 2003 refering to a Beta version of all this said that a Belkin router would not do the business.
    So, anymore thoughts out there, Mac people?

  • IChat 4.0 - vcencoder process hangs

    Since doing a clean Erase and Install of Leopard onto my iMac G5, the process "vcencoder" hangs a few minutes into my video chats. (This according to activity monitor). This inevitably disrupts the chat a few minutes later (although not right away). Only killing the process ends the disruption, but it turns the chat into audio only in terms of what the other side sees/hears, whereas my side continues to display video and audio.
    Any ideas?

    Hi
    Use this FAQ and Repair Permissions and get a Utility to run the Cron Scripts
    http://discussions.apple.com/thread.jspa?messageID=607640&#607640
    3:47 PM Saturday; March 1, 2008

  • Isight not recognized by Skype, Google Video Chat, Logitech VID and ichat.

    MacBook4,1 Firewire
    Leopard 10.5.8
    Skype 2.8.0.866
    Quicktime Plug in 7.6.9
    QUictime player MIA
    Here is my story. I will try and make it as brief as possible.
    The other day, I put a rented DVD into my dvd drive, and it didn't load. I checked for updates for Mac or quicktime. Nothing available. I did some googlin, and someone suggested I zap pram, repair permissions. I blindly obeyed. That didn't help. Then I messed around with quicktime. Not sure what I did. Finally, I had to download the latest version of VLC to watch my movie. I have no idea of my problems with QT have anything to do with my isight issues with Skype and the like, but I mentioned it just in case.
    The next morning, when I went to skype, my video wasn't sending. I'm not sure if my chat partners video was working, we usually only do it one way. Me sending.
    I checked to see if my video was working in photobooth. Indeed it was (and still does).
    I have to date:
    Downloaded the latest version of QT (7.6.9 for Leopard)- the web plug-in for watching QT online is installed and running properly.
    After install, the QT player does not show up in applications, or anywhere else on the hard drive.
    I Messed around with QT in ways I can't describe. Trying to install older versions, removing who knows what files. Installing again.
    zapped PRAM
    Cleared preferences for Skype by removing skype plist
    download latest version skype
    deleted all skype files I could find
    reinstall Skype
    repaired permissions (FIRST THING I DID)
    Put your Mac to sleep
    Wake the computer after it has gone to sleep.
    Restart your Mac by by choosing the Apple
    Shut down your Mac
    Start up mac
    Shutting down, disconnecting power supply, taking out batter, putting dumte mac together again
    changed permissions on skype specifically to make sure all accounts were read/write
    tried setting using skype with a new account
    tried using skype, google video and logitech using wifi at my work
    uninstalled PREY video security app plug in
    removed and uninstalled divx
    removed and uninstalled perian
    Checked Preferences>Video show a black screen that says "No Video Camera Connected" and does not show ANY cameras in the video camera chooser drop down"
    NOTE: Google Video Chat does show the isight cam, but a black screen. Logitech just has a black screen and asks "where in the interweb is your cam buddy?
    I have searched and failed to find CamCamX5.component
    Tested video in Google Chat and Logitech VID chat. built-in isight not recognized
    Tested video in iChat - I chat crashed when opening. (i posted the crash report at the end of this post)
    I'm sure I'm missing some.......
    SOME THINGS I HAVE NOT YET TRIED
    ROSETTA - in the Skype info pane, Rosetta is greyed out. I don't know if I have it, don't know where to get it. Don't know if I need.
    Installing Skype while playing Stairway to Heaven backwards
    Reset SMC or PMU
    Done disk repair - I'm not sure how to do that, I used to have a disc for my old mac for that
    Deleted iPhotoPhotocast and/or QuartzComposer.
    Closing Firefox and starting Skype
    install older version of skype
    ICHAT CRASH REPORT
    Model: MacBook4,1, BootROM MB41.00C1.B00, 2 processors, Intel Core 2 Duo, 2.4 GHz, 2 GB
    Graphics: kHW_IntelGMA965Item, GMA X3100, spdisplays_builtin, 144 MB
    Memory Module: global_name
    AirPort: spairportwireless_card_type_airportextreme (0x14E4, 0x88), Broadcom BCM43xx 1.0 (5.10.91.21)
    Bluetooth: Version 2.1.9f10, 2 service, 1 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: FUJITSU MHY2160BH, 149.05 GB
    Parallel ATA Device: HL-DT-ST DVDRW GSA-S10N
    USB Device: Built-in iSight, (null) mA
    USB Device: Apple Internal Keyboard / Trackpad, (null) mA
    USB Device: IR Receiver, (null) mA
    USB Device: Bluetooth USB Host Controller, (null) mA
    Process: iChat [191]
    Path: /Applications/iChat.app/Contents/MacOS/iChat
    Identifier: com.apple.iChat
    Version: ??? (???)
    Build Info: iChat-6220000~1
    Code Type: X86 (Native)
    Parent Process: launchd [67]
    Interval Since Last Report: 7034092 sec
    Crashes Since Last Report: 37
    Per-App Interval Since Last Report: 0 sec
    Per-App Crashes Since Last Report: 2
    Date/Time: 2011-01-17 20:32:51.126 -0800
    OS Version: Mac OS X 10.5.8 (9L31a)
    Report Version: 6
    Anonymous UUID: A12CF9D7-D5A7-4ED6-8488-B9B5FD597DC4
    Exception Type: EXC_BREAKPOINT (SIGTRAP)
    Exception Codes: 0x0000000000000002, 0x0000000000000000
    Crashed Thread: 0
    Application Specific Information:
    * Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Couldn't load DefaultDefaults'
    Thread 0 Crashed:
    0 com.apple.CoreFoundation 0x9313ae94 __TERMINATING_DUE_TO_UNCAUGHT_EXCEPTION__ + 4
    1 libobjc.A.dylib 0x92f2ae3b objcexceptionthrow + 40
    2 com.apple.CoreFoundation 0x9313adcb +[NSException raise:format:arguments:] + 155
    3 com.apple.Foundation 0x9530ef35 -[NSAssertionHandler handleFailureInFunction:file:lineNumber:description:] + 101
    4 iChatCommonGUI 0x009e135d RegisterDefaults + 232
    5 com.apple.iChat 0x0013c10c 0x1000 + 1290508
    6 com.apple.iChat 0x0000341e 0x1000 + 9246
    Thread 0 crashed with X86 Thread State (32-bit):
    eax: 0xa03560f0 ebx: 0x92f2ae1c ecx: 0xa03551a0 edx: 0x00a2a000
    edi: 0x00000000 esi: 0x009f71b0 ebp: 0xbffffa38 esp: 0xbffffa38
    ss: 0x0000001f efl: 0x00000282 eip: 0x9313ae94 cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
    cr2: 0x0231e000
    Binary Images:
    0x1000 - 0x23cfef com.apple.iChat 4.0.9 (622) <deb92a6fd826a5eb82f1d8991748ef59> /Applications/iChat.app/Contents/MacOS/iChat
    0x2b1000 - 0x326ff7 com.apple.Bluetooth 2.1.9 (2.1.9f10) <d70a88066ebf7eb8071781f686caced3> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x375000 - 0x391fff com.apple.IMFramework 4.0.8 (584) <49551f914cd1c3ba154f15f3765803a9> /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
    0x3aa000 - 0x4ddff6 com.apple.viceroy.framework 363.57 (363.59) <3de89d35cae265ca45b876897be26679> /System/Library/PrivateFrameworks/VideoConference.framework/Versions/A/VideoCon ference
    0x54e000 - 0x58dfff com.apple.vmutils 4.1 (104) <9009c24d9279b0794970d8eea4134201> /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x5af000 - 0x6b6ff7 com.apple.WebKit 5533.19 (5533.19.4) <9299024ba5d2d796781e6d7312fae16a> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x76a000 - 0x783fff com.apple.frameworks.preferencepanes 12.2 (12.2) <090decd2f1c3f48031e43fdf2171469f> /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
    0x79d000 - 0x79fffd com.apple.CrashReporterSupport 10.5.7 (161) <ccdc3f2000afa5fcbb8537845f36dc01> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x7a6000 - 0x7d8fff com.apple.remotedesktop.screensharing 1.0.3 (1.0.3) <a6a5cd9d317cc6606b6b02c96df076fb> /System/Library/PrivateFrameworks/ScreenSharing.framework/Versions/A/ScreenShar ing
    0x7eb000 - 0x7ffff7 com.apple.ScreenSaver 2.2 (2.2) <e8b7c717976f8af3ec1f255c5ad04caf> /System/Library/Frameworks/ScreenSaver.framework/Versions/A/ScreenSaver
    0x810000 - 0x823fff com.apple.IMUtils 4.0.8 (584) <2105663d09d2bee0d8742159d0581a3e> /System/Library/Frameworks/InstantMessage.framework/Frameworks/IMUtils.framewor k/Versions/A/IMUtils
    0x832000 - 0x850fe3 libexpat.1.dylib ??? (???) <eff8a63a23a7d07af62b36fdb329e393> /usr/lib/libexpat.1.dylib
    0x858000 - 0x86ffff com.apple.datadetectors 1.0.1 (66.2) <b4676446cca8a1e4c28ca911026b7ceb> /System/Library/PrivateFrameworks/DataDetectors.framework/Versions/A/DataDetect ors
    0x883000 - 0x8d1ff3 com.apple.datadetectorscore 1.0.2 (52.14) <bd3bfe061091be75ce6a27172b988702> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x902000 - 0x975fff com.apple.iLifeMediaBrowser 2.1.5 (368) <3026150475335424dd1532739ded6fb0> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x9c3000 - 0x9f5ff7 iChatCommonGUI ??? (???) <eaba5e1e294f518db1b573b7fee6ff87> /System/Library/PrivateFrameworks/iChatCommonGUI.framework/iChatCommonGUI
    0xa20000 - 0xa22fff com.apple.BezelServicesFW 1.4.9212 (1.4.9212) /System/Library/PrivateFrameworks/BezelServices.framework/Versions/A/BezelServi ces
    0x1110000 - 0x1c0afff com.apple.WebCore 5533.19 (5533.19.4) <9b91bb00c553ec746fdbe51abca306af> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x8fe00000 - 0x8fe2db43 dyld 97.1 (???) <458eed38a009e5658a79579e7bc26603> /usr/lib/dyld
    0x90003000 - 0x90032fe3 com.apple.AE 402.3 (402.3) <b13bfda0ad9314922ee37c0d018d7de9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x90036000 - 0x901b6fff com.apple.AddressBook.framework 4.1.2 (702) <f9360f9926ccd411fdf7550b73034d17> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x901b7000 - 0x901befe9 libgcc_s.1.dylib ??? (???) <f53c808e87d1184c0f9df63aef53ce0b> /usr/lib/libgcc_s.1.dylib
    0x901bf000 - 0x90218ff7 libGLU.dylib ??? (???) <a3b9be30100a25a6cd3ad109892f52b7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x90219000 - 0x90253fe7 com.apple.coreui 1.2 (62) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x90254000 - 0x902a2fe3 com.apple.AppleVAFramework 4.1.17 (4.1.17) /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x902a3000 - 0x90427fef com.apple.MediaToolbox 0.484.2 (484.2) <32bf3254fafd942cf8f2c813960217fd> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x905b8000 - 0x905b8fff com.apple.Carbon 136 (136) <27d42531a2cbeb05a7f4d05a28281bd7> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x905b9000 - 0x90633ff8 com.apple.print.framework.PrintCore 5.5.4 (245.6) <03d0585059c20cb0bde5e000438c49e1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x90634000 - 0x90673fef libTIFF.dylib ??? (???) <a5991d757f0c17a9bb8b1bcb14ab9ec0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x90674000 - 0x90724fff edu.mit.Kerberos 6.0.14 (6.0.14) <673f107cdae80c084774a27bc7bc46c1> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x90725000 - 0x90769feb com.apple.DirectoryService.PasswordServerFramework 3.0.4 (3.0.4) <45d0af6eed184b278990175527a0d3fa> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x9076a000 - 0x90779ffe com.apple.DSObjCWrappers.Framework 1.3 (1.3) <09deb9e32d0d09dfb95ae569bdd2b7a4> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x9077a000 - 0x90804ff7 com.apple.DesktopServices 1.4.9 (1.4.9) <f5e51a76d315798371b3dd35a4d46d6c> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x90805000 - 0x9093dfe7 com.apple.imageKit 1.0.2 (1.0) <00d03cf7f26e1b6023efdc4bd15dd52e> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x9093e000 - 0x90940ff5 libRadiance.dylib ??? (???) <276f13ab6429e05b093a8dda251e3b53> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x90941000 - 0x90c6cff6 com.apple.QuickTime 7.6.9 (1680.9) <024f122335016a54f8e59ddb4c79901d> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x90c6d000 - 0x90e3eff3 com.apple.security 5.0.6 (37592) <0b25e1e4cc34431630f01edb3fdf54d1> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x90e3f000 - 0x90e88fef com.apple.Metadata 10.5.8 (398.26) <e4d268ea45379200f03cdc7c8bedae6f> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x90e89000 - 0x90e89ffc com.apple.audio.units.AudioUnit 1.5 (1.5) /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x90e8a000 - 0x90f1dfff com.apple.ink.framework 101.3 (86) <bf3fa8927b4b8baae92381a976fd2079> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x90f1e000 - 0x915befef com.apple.CoreGraphics 1.409.7 (???) <7b65edcce394f39b6a1954d5e30bc34c> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x915bf000 - 0x91726ff3 libSystem.B.dylib ??? (???) <c8f52e158bf540cc000146ca8a705958> /usr/lib/libSystem.B.dylib
    0x91727000 - 0x9172cffc com.apple.KerberosHelper 1.1 (1.0) <c6b942d705fa0460ace11af01f316db1> /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosH elper
    0x9172d000 - 0x917c0ff3 com.apple.ApplicationServices.ATS 3.8 (???) <e61b0945da6ab368348a927f7428ad67> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x917c1000 - 0x917cefe7 com.apple.opengl 1.5.10 (1.5.10) <5a2813f80c9441170cc1ab8a3dac5038> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x917cf000 - 0x917d3fff com.apple.OpenDirectory 10.5 (10.5) <7d9ff71c60ad73f4c82a638abc233bf0> /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/OpenDirect ory
    0x917d4000 - 0x91b90ff4 com.apple.VideoToolbox 0.484.2 (484.2) <46c37a5fead4e4f58501f15a641ff476> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x91b91000 - 0x91e6bff3 com.apple.CoreServices.CarbonCore 786.16 (786.16) <60b518e4ad02b91826240199a6311286> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x91e6c000 - 0x91e6cff8 com.apple.ApplicationServices 34 (34) <8f910fa65f01d401ad8d04cc933cf887> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x91e6d000 - 0x91eabfff libGLImage.dylib ??? (???) <a6425aeb77f4da13212ac75df57b056d> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x91eac000 - 0x91f39ff7 com.apple.LaunchServices 292 (292) <a41286c7c1eb20ffd5cc796f791070f0> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x91f3a000 - 0x922d7fef com.apple.QuartzCore 1.5.8 (1.5.8) <a28fa54346a9f9d5b3bef076a1ee0fcf> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x922d8000 - 0x922d8ffd com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x922d9000 - 0x9234bfff com.apple.PDFKit 2.1.2 (2.1.2) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x9234c000 - 0x923feffb libcrypto.0.9.7.dylib ??? (???) <d02f7e5b8a68813bb7a77f5edb34ff9d> /usr/lib/libcrypto.0.9.7.dylib
    0x923ff000 - 0x9247cfef libvMisc.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x9247d000 - 0x92487feb com.apple.audio.SoundManager 3.9.2 (3.9.2) <0f2ba6e891d3761212cf5a5e6134d683> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x92488000 - 0x9248cfff libmathCommon.A.dylib ??? (???) /usr/lib/system/libmathCommon.A.dylib
    0x9248d000 - 0x92c8bfef com.apple.AppKit 6.5.9 (949.54) <4df5d2e2271175452103f789b4f4d8a8> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x92c8c000 - 0x92ca8ff3 com.apple.CoreVideo 1.6.1 (48.6) <186cb311c17ea8714e918273c86d3c13> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x92ca9000 - 0x92cebfef com.apple.NavigationServices 3.5.2 (163) <91844980804067b07a0b6124310d3f31> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x92cec000 - 0x92d93feb com.apple.QD 3.11.57 (???) <35f058678972d42b88ebdf652df79956> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x92d94000 - 0x92db1ff7 com.apple.QuickLookFramework 1.3.1 (170.9) /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x92db2000 - 0x92efaff7 com.apple.ImageIO.framework 2.0.7 (2.0.7) <acf821a3c418fdc86ef02b654366f5f6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x92efb000 - 0x92efffff libGIF.dylib ??? (???) <36f7b0255a81d97c7b360c3b11b4e462> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x92f00000 - 0x92f16fff com.apple.DictionaryServices 1.0.0 (1.0.0) <ad0aa0252e3323d182e17f50defe56fc> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x92f21000 - 0x93001fff libobjc.A.dylib ??? (???) <7b92613fdf804fd9a0a3733a0674c30b> /usr/lib/libobjc.A.dylib
    0x93002000 - 0x9304dfe1 com.apple.securityinterface 3.0.4 (37213) <16de57ab3e3f85f3b753f116e2fa7847> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x9304e000 - 0x93181fe7 com.apple.CoreFoundation 6.5.7 (476.19) <a332c8f45529ee26d2e9c36d0c723bad> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x93182000 - 0x93182ff8 com.apple.Cocoa 6.5 (???) <e064f94d969ce25cb7de3cfb980c3249> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x93183000 - 0x93541fea libLAPACK.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x9356b000 - 0x936a4ff7 libicucore.A.dylib ??? (???) <f2819243b278259b9a622ea111ea5fd6> /usr/lib/libicucore.A.dylib
    0x936a5000 - 0x936f0ff7 com.apple.CoreMediaIOServices 130.0 (935) <e7c6d794bbec49f9d1ee8261c3f9ff0e> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x936f1000 - 0x936f9fff com.apple.DiskArbitration 2.2.1 (2.2.1) <75b0c8d8940a8a27816961dddcac8e0f> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x936fa000 - 0x93756ff7 com.apple.htmlrendering 68 (1.1.3) <fe87a9dede38db00e6c8949942c6bd4f> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x93757000 - 0x93763ffe libGL.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x93764000 - 0x9384cff3 com.apple.CoreData 100.2 (186.2) <44df326fea0236718f5ed64084e82270> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x9384d000 - 0x9385dffc com.apple.LangAnalysis 1.6.5 (1.6.5) <d057feb38163121ffd871c564c692804> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x9385e000 - 0x9385effa com.apple.CoreServices 32 (32) <2fcc8f3bd5bbfc000b476cad8e6a3dd2> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x949f9000 - 0x94a09fff com.apple.speech.synthesis.framework 3.7.1 (3.7.1) <06d8fc0307314f8ffc16f206ad3dbf44> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x94a0a000 - 0x94a59fff com.apple.QuickLookUIFramework 1.3.1 (170.9) /System/Library/PrivateFrameworks/QuickLookUI.framework/Versions/A/QuickLookUI
    0x94a5a000 - 0x94e6afef libBLAS.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x94e6b000 - 0x94e8affa libJPEG.dylib ??? (???) <d23f3f3b9d168bf32f89449f83fa07f7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x94e8b000 - 0x94eaffeb libssl.0.9.7.dylib ??? (???) <5b29af782be5894be8b336c9c73c18b6> /usr/lib/libssl.0.9.7.dylib
    0x94eb8000 - 0x94ecdffb com.apple.ImageCapture 5.0.2 (5.0.2) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x94ece000 - 0x94ed3fff com.apple.CommonPanels 1.2.4 (85) <ea0665f57cd267609466ed8b2b20e893> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x94ed4000 - 0x94f7bfec com.apple.CFNetwork 438.16 (438.16) <dbf00ca36a09edfae60ec44f9d7a9ef9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x94f7c000 - 0x95003ff7 libsqlite3.0.dylib ??? (???) <3334ea5af7a911637413334154bb4100> /usr/lib/libsqlite3.0.dylib
    0x95004000 - 0x95004ffb com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x95005000 - 0x9500cffe libbsm.dylib ??? (???) <d25c63378a5029648ffd4b4669be31bf> /usr/lib/libbsm.dylib
    0x9500d000 - 0x95047ffe com.apple.securityfoundation 3.0.2 (36131) <39663c9b6f1a09d0566305d9f87cfc91> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x95048000 - 0x950c7ff5 com.apple.SearchKit 1.2.2 (1.2.2) <3b5f3ab6a363a4d8a2bbbf74213ab0e5> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x950c8000 - 0x950cefff com.apple.print.framework.Print 218.0.3 (220.2) <5b7f4ef7c2df36aff9605377775781e4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x950cf000 - 0x95106fff com.apple.SystemConfiguration 1.9.2 (1.9.2) <8b26ebf26a009a098484f1ed01ec499c> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x95131000 - 0x95133fff com.apple.securityhi 3.0 (30817) <31baaf7ea27b41480604ffc910fe827f> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x95134000 - 0x951effe3 com.apple.CoreServices.OSServices 228.1 (228.1) <76fdc146b4d9937f9c5cbaa1512e0023> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x951f0000 - 0x951f0ffd com.apple.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x951f1000 - 0x9546dfe7 com.apple.Foundation 6.5.9 (677.26) <c68b3cff7864959becfc7fd1a384f925> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x95480000 - 0x95481ffc libffi.dylib ??? (???) <a3b573eb950ca583290f7b2b4c486d09> /usr/lib/libffi.dylib
    0x95482000 - 0x95563ff7 libxml2.2.dylib ??? (???) <b3bc0b280c36aa17ac477b4da56cd038> /usr/lib/libxml2.2.dylib
    0x95571000 - 0x95769fff com.apple.JavaScriptCore 5533.19 (5533.19.1) <a099821bc9203b1bba37aee855280e28> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x958a1000 - 0x958aafff com.apple.speech.recognition.framework 3.7.24 (3.7.24) <73cf6b3c5ddf94d7ce9ae2c81c1b558c> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x958ab000 - 0x958fcfeb com.apple.framework.familycontrols 1.0.4 (1.0.4) <e76b4fa1c25673c8e0fb183b6c0e8eaf> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x959c7000 - 0x959d6fff libsasl2.2.dylib ??? (???) <0ae9f3c08d8508d9dba56324c60ceb63> /usr/lib/libsasl2.2.dylib
    0x959d7000 - 0x95a00fff libcups.2.dylib ??? (???) <2b0ab6b9fa1957ee940835d0cfd42894> /usr/lib/libcups.2.dylib
    0x95a0d000 - 0x95a0dffe com.apple.quartzframework 1.5 (1.5) <4b8f505e32e4f2d67967a276401f9aaf> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x95a0e000 - 0x95a26fff com.apple.openscripting 1.2.8 (???) <572c7452d7e740e8948a5ad07a99602b> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x95a27000 - 0x95a38ffe com.apple.CFOpenDirectory 10.5 (10.5) <39d48cd00b8f9ca3fcdd251715cc74d5> /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/Frameworks /CFOpenDirectory.framework/Versions/A/CFOpenDirectory
    0x95ade000 - 0x95ae3fff com.apple.DisplayServicesFW 2.0.2 (2.0.2) <cb9b98b43ae385a0f374baabe2b71764> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x95ae4000 - 0x95b24fef com.apple.CoreMedia 0.484.2 (484.2) <81221976abdc19f30723c81c5669bbc9> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x95b25000 - 0x95ce1ff3 com.apple.QuartzComposer 2.1 (106.13) <40f034e8c8fd31c9081f5283dcf22b78> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x95ce2000 - 0x961b3fbe libGLProgrammability.dylib ??? (???) <7f18294a7bd0b6afe4319f29187fc70d> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x961b4000 - 0x96211ffb libstdc++.6.dylib ??? (???) <04b812dcec670daa8b7d2852ab14be60> /usr/lib/libstdc++.6.dylib
    0x96212000 - 0x96263ff7 com.apple.HIServices 1.7.1 (???) <ba7fd0ede540a0da08db027f87efbd60> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x96264000 - 0x96267fff com.apple.help 1.1 (36) <b507b08e484cb89033e9cf23062d77de> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x96268000 - 0x96268ffe com.apple.MonitorPanelFramework 1.2.0 (1.2.0) <a2b462be6c51187eddf7d097ef0e0a04> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x96269000 - 0x9629bfff com.apple.LDAPFramework 1.4.5 (110) <bb7a3e5d66f00d1d1c8a40569b003ba3> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x9629c000 - 0x963eeff3 com.apple.audio.toolbox.AudioToolbox 1.5.3 (1.5.3) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x963f7000 - 0x966fffe7 com.apple.HIToolbox 1.5.6 (???) <eece3cb8aa0a4e6843fcc1500aca61c5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x96700000 - 0x9672bfe7 libauto.dylib ??? (???) <42d8422dc23a18071869fdf7b5d8fab5> /usr/lib/libauto.dylib
    0x9672c000 - 0x96876feb com.apple.QTKit 7.6.9 (1680.9) <fe987e6adf235d5754399dcdae6e5a8e> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x96877000 - 0x96895ff3 com.apple.DirectoryService.Framework 3.5.7 (3.5.7) <b4cd561d2481c4162ecf0acdf8cb062c> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x96896000 - 0x9689bfff com.apple.backup.framework 1.0 (1.0) /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x9689c000 - 0x968c0fff libxslt.1.dylib ??? (???) <0a9778d6368ae668826f446878deb99b> /usr/lib/libxslt.1.dylib
    0x968c1000 - 0x96988ff2 com.apple.vImage 3.0 (3.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x96989000 - 0x96997ffd libz.1.dylib ??? (???) <5ddd8539ae2ebfd8e7cc1c57525385c7> /usr/lib/libz.1.dylib
    0x96998000 - 0x969c9ffb com.apple.quartzfilters 1.5.0 (1.5.0) <22581f8fe9dd2cb261f97a897407ec3e> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x969ca000 - 0x96a24ff7 com.apple.CoreText 2.0.5 (???) <5483518a613464d043455ac661a9dcbe> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x96a25000 - 0x96a43fff libresolv.9.dylib ??? (???) <a8018c42930596593ddf27f7c20fe7af> /usr/lib/libresolv.9.dylib
    0x96a44000 - 0x96a5fff3 libPng.dylib ??? (???) <c0791798fb92acc136c250a373449359> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x96a60000 - 0x96a60ffd com.apple.Accelerate 1.4.2 (Accelerate 1.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x96a61000 - 0x96a8efeb libvDSP.dylib ??? (???) <b232c018ddd040ec4e2c2af632dd497f> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x96a8f000 - 0x96b0cfeb com.apple.audio.CoreAudio 3.1.2 (3.1.2) <782a08c44be4698597f4bbd79cac21c6> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x96b0d000 - 0x96b9aff7 com.apple.framework.IOKit 1.5.2 (???) <7a3cc24f78f93931731203854ae0d891> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x96b9b000 - 0x96c66fef com.apple.ColorSync 4.5.3 (4.5.3) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0xfffe8000 - 0xfffebfff libobjc.A.dylib ??? (???) /usr/lib/libobjc.A.dylib
    0xffff0000 - 0xffff1780 libSystem.B.dylib ??? (???) /usr/lib/libSystem.B.dylib
    I know this is a lot of info. I hope I didn't miss anything. I use skype with three people. Three very important people. Two of which, meh, the video isn't important. ONe where the video option is paramount.
    I'm just a little frustrated. Thanks in advance for any help.

    Hi,
    We will come back to iChat if required.
    It does prefer an Screen Name to be added as you go through the Start Up Screens (First Run) but you can click through these and just access the iChat > Preferences > Video Section to view a Preview.
    I must admit to not seeing a Crash Log when the known chosen Mic/Audio Input has not been listed.
    However if the External Audio was Firewire connected that may explain things.
    NOTE:-
    mAudio and other Firewire Audio Devices do tend to need the Most up-to-date drivers to work properly.
    Sometimes it pays not to do a COMBO or other Software Update until you know the drivers are ready for it.
    With any OS update above the 10.x.1 point will also have a COMBO version.
    The COMBO then includes all the updated items between the base level OS and the latest Update.
    So for 10.6 there is only what is called a Delta for 10.6.1
    There is a delta (10.6.1 to 10.6.2 only) and a COMBO (10.6 to 10.6.2) for the next update and this is repeated through 10.6.6
    The Deltas only include those things that are Updated on that occasion (As in the 10.6.1 to 10.6.2 example - 10.6.5 to 10.6.6 would not include the stuff in 10.6.4 or earlier)
    COMBOs can be installed "Over-the-Top" of what you have already installed.
    It is certainly needed when you Re-install something (Apple apps/Files etc) from the Install Disk you have when your OS has been updated beyond that point.
    Some apps like iChat Get their Updates in the OS Updates and need to "Match" the progression.
    The 10.5.8 COMBO (Your specs say 10.5.8) is Here
    For others the 10.6.5 COMBO is here
    and 10.6.6 COMBO IS here
    <hr>
    Quicktime.
    The Download and Install should be all the parts of Quicktime.
    Internet Plug-ins for Browsers, various System Files to make Quicktime work for other apps, various Components to play various formats and of course the Player itself.
    The Player should be in the Applications Folder with this icon:-
    The OS 10.6 version (Quicktime X has a big blue X icon)
    If you mean it has disappeared from the DOCK you can Drag the Application back to the DOCK to make the icon (and link to app) again (The app stays in the Applications folder the OS just makes an icon and links it for you by doing this)
    One of the biggest causes of many apps not working is turning Off/Disabling certain Fonts the apps need.
    Follow the Link in this Users Tip by Kurt Lang. Make sure that the Correct System Fonts are ON.
    9:53 PM Tuesday; January 25, 2011
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"

  • Getting error -21 all of a sudden and unable to open a video chat

    Here's my issue, new 24" imac behind a Netgear Router using a fixed (reserved) IP from the dhcp. After opening all the ports that were needed by iChat AV I was happily video conferencing with others for a few weeks. Yesterday, after conferencing with a few people in the morning I was unable to get it to work later in the day and ever since. I have read and tried everything I could find to fix this and am at a wall.
    I did not install new software between when it was working and when it stopped, about the only thing I can think of is I had WoW running and my eyeTV 250 to see if it could handle it. The TV video stuttered so I quit eyeTV.
    Right now, I can text chat fine. I can 2-way audio chat. When I try and connect to a friend or any of the apple test servers (appleu3test01, etc.), my video window comes up waiting for connection then I get a "Disconnected from video chat because: Can't get video from the camera". The full error log is below.
    Console.log lists this error: "2006-10-04 09:00:31.722 iChat[197] WARNING: Freeze-frame failed: couldn't get local buffer for layer Local!"
    Here's a laundry list of what I have done so far to try and resolve it all resulting in the same behavior and the -21 error:
    *Quicktime streaming is set at about my dsl speed (I tested the dsl speed at a few online testers). IChat set to Bandwidth limit: none.
    *Reset the router to factory and reentered all the port forwards.
    *Shut off every other machine in the house to make sure they weren't sucking bandwidth
    *Bypassed the router, connecting to ISP with a fixed IP
    *Disconnected everything from iMac (printer, EyeTv) and restarted.
    *Fixed permissions in Disk Utility
    *Ran Mac Janitor
    *Reapplied the 10.4.8 Update
    *Zapped the PRAM
    *probably more I can't think of right now....heh
    I got this thing 2 weeks ago and within days the superdrive died. The local Apple store has the part ordered (it's been a week). I hope my cam isn't messed up now....I suppose it's possible that some resource got fritzed with WoW and the TV running but since I have no CD drive I can't resort to a disk right now.
    I realize this is long winded but I figured I'd err on the side of complete info. Any suggestions that you can offer would be greatly appreciated.
    Date/Time: 2006-10-04 09:00:37.422 -0700
    OS Version: 10.4.8 (Build 8L2127)
    Report Version: 4
    iChat Connection Log:
    AVChat started with ID 3825289383.
    todds777721: State change from AVChatNoState to AVChatStateWaiting.
    0x1b93ea80: State change from AVChatNoState to AVChatStateInvited.
    0x1b93ea80: State change from AVChatStateInvited to AVChatStateConnecting.
    todds777721: State change from AVChatStateWaiting to AVChatStateConnecting.
    0x1b93ea80: State change from AVChatStateConnecting to AVChatStateConnected.
    todds777721: State change from AVChatStateConnecting to AVChatStateConnected.
    todds777721: State change from AVChatStateConnected to AVChatStateEnded.
    Chat ended with error -21
    0x1b93ea80: State change from AVChatStateConnected to AVChatStateEnded.
    Chat ended with error -21
    Video Conference Error Report:
    @SIP/Transport.c:121 type=4 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP 192.168.1.2:5060;branch=z9hG4bK6b580af6765bddf5
    To: "u0" <sip:[email protected]>;tag=1101927157
    From: "todds777721" <sip:[email protected]>;tag=1928512074
    Call-ID: 75b4471a-53c1-11db-bb95-dc35034c13c4@lip
    CSeq: 3 NOTIFY
    User-Agent: Viceroy 1.2
    Content-Length: 0
    @:0 type=4 (00000000/2)
    [VCRECEIVEERROR]
    [23]
    @:0 type=4 (00000000/2)
    [VCTRANSMITERROR]
    [22]
    @SIP/Transport.c:121 type=4 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP 192.168.1.2:5060;branch=z9hG4bK63cedfb3621b8711
    To: "u0" <sip:[email protected]>;tag=1101927157
    From: "todds777721" <sip:[email protected]>;tag=1928512074
    Call-ID: 75b4471a-53c1-11db-bb95-dc35034c13c4@lip
    CSeq: 2 NOTIFY
    User-Agent: Viceroy 1.2
    Content-Length: 0
    @SIP/Transport.c:121 type=4 (00000000/0)
    [SUBSCRIBE sip:[email protected] SIP/2.0
    Via: SIP/2.0/UDP u0en0.0;branch=z9hG4bK6b01f73c0b50f2e2
    Max-Forwards: 70
    To: "todds777721" <sip:[email protected]>;tag=1928512074
    From: "u0" <sip:[email protected]>;tag=1101927157
    Call-ID: 75b4471a-53c1-11db-bb95-dc35034c13c4@lip
    CSeq: 1 SUBSCRIBE
    Contact: <sip:[email protected]>
    Event: conference
    Expires: 3600
    User-Agent: Viceroy 1.2
    Content-Length: 0
    @SIP/Transport.c:121 type=4 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP 192.168.1.2:5060;branch=z9hG4bK738f390c1d5818d9
    To: "u0" <sip:[email protected]>;tag=1101927157
    From: "todds777721" <sip:[email protected]>;tag=1928512074
    Call-ID: 75b4471a-53c1-11db-bb95-dc35034c13c4@lip
    CSeq: 1 INVITE
    Contact: <sip:[email protected]>
    User-Agent: Viceroy 1.2
    Content-Type: application/sdp
    Content-Length: 413
    [v=0
    o=demo1appleu3 0 0 IN IP4 u0en0.0
    s=todds777721
    c=IN IP4 u0en0.0
    b=AS:2147483647
    t=0 0
    a=hwi:288:2:2500
    a=bandwidthDetection:YES
    a=iChatEncryption:NO
    m=audio 16390 RTP/AVP 12
    a=rtcp:16391
    a=rtpID:1837567197
    m=video 16388 RTP/AVP 126
    a=rtcp:16389
    a=rtpmap:126 X-H264
    a=RTCP:AUDIO 16391 VIDEO 16389
    a=fmtp:126 imagesize 0 rules 30:160:120:160:120
    a=framerate:30
    a=rtpID:-1074546252
    @SIP/Transport.c:121 type=4 (00000000/0)
    [SIP/2.0 180 Ringing
    Via: SIP/2.0/UDP 192.168.1.2:5060;branch=z9hG4bK738f390c1d5818d9
    To: "u0" <sip:[email protected]>;tag=1101927157
    From: "todds777721" <sip:[email protected]>;tag=1928512074
    Call-ID: 75b4471a-53c1-11db-bb95-dc35034c13c4@lip
    CSeq: 1 INVITE
    Contact: <sip:[email protected]>
    User-Agent: Viceroy 1.2
    Content-Length: 0
    @SIP/Transport.c:121 type=4 (00000000/0)
    [SIP/2.0 100 Trying
    Via: SIP/2.0/UDP 192.168.1.2:5060;branch=z9hG4bK738f390c1d5818d9
    To: "u0" <sip:[email protected]>
    From: "todds777721" <sip:[email protected]>;tag=1928512074
    Call-ID: 75b4471a-53c1-11db-bb95-dc35034c13c4@lip
    CSeq: 1 INVITE
    User-Agent: Viceroy 1.2
    Content-Length: 0
    Video Conference Support Report:
    @:0 type=2 (00000000/2)
    [VCUSE_INTERNALISIGHT]
    [25]
    @SIP/Transport.c:1218 type=1 (00000000/0)
    [NOTIFY sip:[email protected] SIP/2.0
    Via: SIP/2.0/UDP m.0;branch=z9hG4bK6b580af6765bddf5
    Max-Forwards: 70
    To: "u0" <sip:[email protected]>;tag=1101927157
    From: "todds777721" <sip:[email protected]>;tag=1928512074
    Call-ID: 75b4471a-53c1-11db-bb95-dc35034c13c4@lip
    CSeq: 3 NOTIFY
    Contact: <sip:[email protected]>;isfocus
    Event: conference
    Subscription-State: terminated;reason=noresource
    User-Agent: Viceroy 1.2
    Content-Length: 0
    @:0 type=2 (00000000/2)
    [VCUSE_EXTERNALMIC]
    [30]
    @:0 type=2 (00000000/2)
    [VCUSE_INTERNALISIGHT]
    [25]
    @SIP/Transport.c:1218 type=1 (00000000/0)
    [NOTIFY sip:[email protected] SIP/2.0
    Via: SIP/2.0/UDP m.0;branch=z9hG4bK63cedfb3621b8711
    Max-Forwards: 70
    To: "u0" <sip:[email protected]>;tag=1101927157
    From: "todds777721" <sip:[email protected]>;tag=1928512074
    Call-ID: 75b4471a-53c1-11db-bb95-dc35034c13c4@lip
    CSeq: 2 NOTIFY
    Contact: <sip:[email protected]>;isfocus
    Event: conference
    Subscription-State: active;expires=3600
    User-Agent: Viceroy 1.2
    Content-Type: application/conference-info+xml
    Content-Length: 205
    <c-i v="0" st="f" en="sip:[email protected]">
    c<h>i</h><m t="a"/><m t="v"/>
    c<h>o</h><m t="a"/><m t="v"/>
    </c-i>
    @SIP/Transport.c:1218 type=1 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP u0en0.0;branch=z9hG4bK6b01f73c0b50f2e2
    To: "todds777721" <sip:[email protected]>;tag=1928512074
    From: "u0" <sip:[email protected]>;tag=1101927157
    Call-ID: 75b4471a-53c1-11db-bb95-dc35034c13c4@lip
    CSeq: 1 SUBSCRIBE
    Contact: <sip:[email protected]>;isfocus
    Expires: 3600
    User-Agent: Viceroy 1.2
    Content-Length: 0
    @SIP/Transport.c:1218 type=1 (00000000/0)
    [ACK sip:[email protected] SIP/2.0
    Via: SIP/2.0/UDP m.0;branch=z9hG4bK4fd5b6561d101bfa
    Max-Forwards: 70
    To: "u0" <sip:[email protected]>;tag=1101927157
    From: "todds777721" <sip:[email protected]>;tag=1928512074
    Call-ID: 75b4471a-53c1-11db-bb95-dc35034c13c4@lip
    CSeq: 1 ACK
    User-Agent: Viceroy 1.2
    Content-Length: 0
    @SIP/Transport.c:1218 type=1 (00000000/0)
    [INVITE sip:[email protected] SIP/2.0
    Via: SIP/2.0/UDP m.0;branch=z9hG4bK738f390c1d5818d9
    Max-Forwards: 70
    To: "u0" <sip:[email protected]>
    From: "todds777721" <sip:[email protected]>;tag=1928512074
    Call-ID: 75b4471a-53c1-11db-bb95-dc35034c13c4@lip
    CSeq: 1 INVITE
    Contact: <sip:[email protected]>;isfocus
    User-Agent: Viceroy 1.2
    Content-Type: application/sdp
    Content-Length: 471
    v=0
    o=Todd 0 0 IN IP4 m.0
    s=todds777721
    c=IN IP4 m.0
    b=AS:2147483647
    t=0 0
    a=hwi:34:2:2160
    a=bandwidthDetection:YES
    a=iChatEncryption:NO
    m=audio 16386 RTP/AVP 12 3 0
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:1068825812
    m=video 16384 RTP/AVP 126 34
    a=rtpmap:126 X-H264
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16387 VIDEO 16385
    a=pogo
    a=fmtp:126 imagesize 0 rules 30:160:120:160:120
    a=rtpID:-872118336
    @:0 type=2 (00000000/22)
    [VCVIDEO_OUTGOINGATTEMPT]
    [4]
    Video Conference User Report:
    Binary Images Description for "iChat":
    0x1000 - 0x181fff com.apple.iChat 3.1.5 (440) /Applications/iChat.app/Contents/MacOS/iChat
    0x15cfd000 - 0x15d07fff com.apple.IOFWDVComponents 1.9.0 /System/Library/Components/IOFWDVComponents.component/Contents/MacOS/IOFWDVComp onents
    0x15f05000 - 0x15f44fff com.apple.QuickTimeFireWireDV.component 7.1.3 /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0x15f4f000 - 0x15f81fff com.apple.QuickTimeIIDCDigitizer 7.1.3 /System/Library/QuickTime/QuickTimeIIDCDigitizer.component/Contents/MacOS/Quick TimeIIDCDigitizer
    0x15fac000 - 0x15feafff com.apple.QuickTimeUSBVDCDigitizer 1.6.6 /System/Library/QuickTime/QuickTimeUSBVDCDigitizer.component/Contents/MacOS/Qui ckTimeUSBVDCDigitizer
    0x1600b000 - 0x16049fff GLEngine /usr/libexec/oah/Shims/GLEngine.bundle/GLEngine
    0x1608b000 - 0x16180fff com.elgato.mpegsupport EyeTV MPEG Support 1.0.4 (build 35) (1.0.4) /Library/QuickTime/EyeTV MPEG Support.component/Contents/MacOS/EyeTV MPEG Support
    0x164db000 - 0x164e0fff com.apple.audio.AppleHDAHALPlugIn 1.2.4 (1.2.4a21) /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x16a50000 - 0x16a55fff com.apple.iokit.IOQTComponents 1.4 /System/Library/Components/IOQTComponents.component/Contents/MacOS/IOQTComponen ts
    0x16b2a000 - 0x16b2efff com.apple.audio.AudioIPCPlugIn 1.0.2 /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x16b49000 - 0x16b75fff com.apple.audio.SoundManager.Components 3.9.2 /System/Library/Components/SoundManagerComponents.component/Contents/MacOS/Soun dManagerComponents
    0x16c00000 - 0x16c1afff com.apple.AppleIntermediateCodec 1.1 (141) /Library/QuickTime/AppleIntermediateCodec.component/Contents/MacOS/AppleInterme diateCodec
    0x16ceb000 - 0x16cebfff com.apple.SpotLightCM 1.0 (121.36) /System/Library/Contextual Menu Items/SpotlightCM.plugin/Contents/MacOS/SpotlightCM
    0x171fc000 - 0x17206fff com.apple.iokit.IOUSBLib 2.6.0 /System/Library/Extensions/IOUSBFamily.kext/Contents/PlugIns/IOUSBLib.bundle/Co ntents/MacOS/IOUSBLib
    0x17272000 - 0x17274fff com.apple.AutomatorCMM 1.0.1 (87) /System/Library/Contextual Menu Items/AutomatorCMM.plugin/Contents/MacOS/AutomatorCMM
    0x17747000 - 0x1774bfff com.apple.FolderActionsMenu 1.3.1 /System/Library/Contextual Menu Items/FolderActionsMenu.plugin/Contents/MacOS/FolderActionsMenu
    0x177f9000 - 0x17855fff com.apple.applepixletvideo 1.2.9 (1.2d9) /System/Library/QuickTime/ApplePixletVideo.component/Contents/MacOS/ApplePixlet Video
    0x19b04000 - 0x19cfdfff net.telestream.wmv.import 2.1.0.33 /Library/QuickTime/Flip4Mac WMV Import.component/Contents/MacOS/Flip4Mac WMV Import
    0x8fc00000 - 0x8fc50fff dyld /usr/lib/dyld
    0x90000000 - 0x901c0fff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x90218000 - 0x9021dfff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x9021f000 - 0x90261fff com.apple.CoreText 1.1.1 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90289000 - 0x9036dfff com.apple.ApplicationServices.ATS 2.0.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x90396000 - 0x90757fff com.apple.CoreGraphics 1.258.38 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x907e6000 - 0x908bdfff com.apple.CoreFoundation 6.4.6 (368.27) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x90904000 - 0x90904fff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x90906000 - 0x90a0ffff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x90a60000 - 0x90ae3fff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90b0c000 - 0x90b7efff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x90bf1000 - 0x90bfcfff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x90c01000 - 0x90c76fff com.apple.framework.IOKit 1.4.6 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90c8c000 - 0x90ca0fff libauto.dylib /usr/lib/libauto.dylib
    0x90ca6000 - 0x90f71fff com.apple.CoreServices.CarbonCore 682.15 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90fce000 - 0x91047fff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x9108a000 - 0x910cbfff com.apple.CFNetwork 129.18 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x910df000 - 0x910f3fff com.apple.WebServices 1.1.3 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x910ff000 - 0x91190fff com.apple.SearchKit 1.0.5 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x911cc000 - 0x911ecfff com.apple.Metadata 10.4.4 (121.36) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x911f9000 - 0x91208fff libz.1.dylib /usr/lib/libz.1.dylib
    0x9120b000 - 0x913c0fff com.apple.security 4.5.1 (29002) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x914bd000 - 0x914c6fff com.apple.DiskArbitration 2.1.1 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x914cd000 - 0x914f5fff com.apple.SystemConfiguration 1.8.6 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91507000 - 0x9150ffff libbsm.dylib /usr/lib/libbsm.dylib
    0x91513000 - 0x9158cfff com.apple.audio.CoreAudio 3.0.4 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x915d6000 - 0x915d6fff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x915d8000 - 0x9160bfff com.apple.AE 314 (313) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x91621000 - 0x916fefff com.apple.ColorSync 4.4.8 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x9173d000 - 0x917befff com.apple.print.framework.PrintCore 4.6 (177.13) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x917fb000 - 0x918adfff com.apple.QD 3.10.21 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x918e2000 - 0x91938fff com.apple.HIServices 1.5.2 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x91960000 - 0x9197afff com.apple.LangAnalysis 1.6.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x91988000 - 0x919a8fff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x919b5000 - 0x919f1fff com.apple.LaunchServices 181 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x91a09000 - 0x91a17fff com.apple.speech.synthesis.framework 3.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x91a1f000 - 0x91a5afff com.apple.ImageIO.framework 1.5.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x91a6e000 - 0x91b31fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91b7c000 - 0x91b91fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x91b96000 - 0x91bb6fff com.apple.ImageIO.framework 1.5.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91bbb000 - 0x91c1afff com.apple.ImageIO.framework 1.5.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91c2c000 - 0x91c30fff com.apple.ImageIO.framework 1.5.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91c32000 - 0x91c98fff com.apple.ImageIO.framework 1.5.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91c9d000 - 0x91cddfff com.apple.ImageIO.framework 1.5.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91ce3000 - 0x91cfdfff com.apple.ImageIO.framework 1.5.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91d02000 - 0x91d04fff com.apple.ImageIO.framework 1.5.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91d06000 - 0x91d06fff com.apple.Accelerate 1.3.1 (Accelerate 1.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91d08000 - 0x91deefff com.apple.vImage 2.5 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91df6000 - 0x91e15fff com.apple.Accelerate.vecLib 3.3.1 (vecLib 3.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91e81000 - 0x91f0dfff com.apple.Accelerate.vecLib 3.3.1 (vecLib 3.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x91f19000 - 0x91fb0fff com.apple.Accelerate.vecLib 3.3.1 (vecLib 3.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x91fc9000 - 0x92576fff com.apple.Accelerate.vecLib 3.3.1 (vecLib 3.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x925a9000 - 0x928d4fff com.apple.Accelerate.vecLib 3.3.1 (vecLib 3.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x92904000 - 0x92989fff com.apple.DesktopServices 1.3.4 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x929cb000 - 0x92bfffff com.apple.Foundation 6.4.7 (567.28) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92d14000 - 0x92e02fff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x92e21000 - 0x92f10fff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x92f21000 - 0x92f41fff com.apple.opengl 1.4.12 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92f4c000 - 0x92fa8fff com.apple.opengl 1.4.12 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92fbe000 - 0x92fbefff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92fc0000 - 0x92fd5fff com.apple.ImageCapture 3.0.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92fe6000 - 0x92ff1fff com.apple.speech.recognition.framework 3.6 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x92ff9000 - 0x93002fff com.apple.securityhi 2.0.1 (24742) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x9300a000 - 0x9309dfff com.apple.ink.framework 101.2.1 (71) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x930b2000 - 0x930b7fff com.apple.help 1.0.3 (32.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x930bb000 - 0x930ddfff com.apple.openscripting 1.2.5 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x930f1000 - 0x930f9fff com.apple.print.framework.Print 5.2 (192.4) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x93100000 - 0x93169fff com.apple.htmlrendering 66.1 (1.1.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x93192000 - 0x931dafff com.apple.NavigationServices 3.4.4 (3.4.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x93204000 - 0x93215fff com.apple.audio.SoundManager 3.9.1 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x9321e000 - 0x93225fff com.apple.CommonPanels 1.2.3 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x9322b000 - 0x93551fff com.apple.HIToolbox 1.4.8 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x93686000 - 0x93693fff com.apple.opengl 1.4.12 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x93698000 - 0x936b1fff com.apple.DirectoryService.Framework 3.2 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x936fe000 - 0x936fefff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x93700000 - 0x93d6efff com.apple.AppKit 6.4.8 (824.42) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x940f6000 - 0x94168fff com.apple.CoreData 90 /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x941a1000 - 0x94260fff com.apple.audio.toolbox.AudioToolbox 1.4.3 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x942a3000 - 0x942a3fff com.apple.audio.units.AudioUnit 1.4.2 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x942a5000 - 0x9446efff com.apple.QuartzCore 1.4.9 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x944c2000 - 0x94502fff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x9450a000 - 0x9454efff com.apple.opengl 1.4.12 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x9458d000 - 0x945d1fff com.apple.bom 8.5 (86.3) /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x945dc000 - 0x9461efff com.apple.vmutils 4.0.2 (93.1) /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x94664000 - 0x94678fff com.apple.securityfoundation 2.2.1 (28150) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x94687000 - 0x946c1fff com.apple.securityinterface 2.2.1 (27695) /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x946de000 - 0x946effff com.apple.CoreGraphics 1.258.38 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x946f6000 - 0x94703fff com.apple.CoreGraphics 1.258.38 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x94753000 - 0x9476dfff com.apple.CoreGraphics 1.258.38 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x94774000 - 0x94a43fff com.apple.QuickTime 7.1.3 /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x94b06000 - 0x94b28fff libmx.A.dylib /usr/lib/libmx.A.dylib
    0x94c1f000 - 0x94d55fff com.apple.AddressBook.framework 4.0.4 (485.1) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x94de3000 - 0x94df2fff com.apple.DSObjCWrappers.Framework 1.1 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x94dfa000 - 0x94e27fff com.apple.LDAPFramework 1.4.2 (69.1.1) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x94e2e000 - 0x94e3efff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
    0x94e42000 - 0x94e6efff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x94e7d000 - 0x94e9bfff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x94ea2000 - 0x94f0efff com.apple.Bluetooth 1.7.9 (1.7.9f12) /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x951e5000 - 0x95275fff com.apple.WebKit 418.9 /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x952d1000 - 0x9535efff com.apple.JavaScriptCore 418.3 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/JavaScriptCor e.framework/Versions/A/JavaScriptCore
    0x95398000 - 0x95696fff com.apple.WebCore 418.21 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x95823000 - 0x9584bfff libxslt.1.dylib /usr/lib/libxslt.1.dylib
    0x96003000 - 0x96004fff libCyrillicConverter.dylib /System/Library/CoreServices/Encodings/libCyrillicConverter.dylib
    0x96006000 - 0x96007fff libGreekConverter.dylib /System/Library/CoreServices/Encodings/libGreekConverter.dylib
    0x9600c000 - 0x96023fff libJapaneseConverter.dylib /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
    0x96025000 - 0x96046fff libKoreanConverter.dylib /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
    0x96054000 - 0x96063fff libSimplifiedChineseConverter.dylib /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0x96068000 - 0x96069fff libThaiConverter.dylib /System/Library/CoreServices/Encodings/libThaiConverter.dylib
    0x9606b000 - 0x9607efff libTraditionalChineseConverter.dylib /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    0x969db000 - 0x969fafff com.apple.vecLib 3.3.1 (vecLib 3.3.1) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x96fa5000 - 0x96fc8fff com.apple.speech.LatentSemanticMappingFramework 2.5 /System/Library/PrivateFrameworks/LatentSemanticMapping.framework/Versions/A/La tentSemanticMapping
    0x97138000 - 0x97145fff com.apple.agl 2.5.9 (AGL-2.5.9) /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x972a4000 - 0x972a5fff com.apple.MonitorPanelFramework 1.1.1 /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x97a77000 - 0x97b60fff com.apple.viceroy.framework 276.0 /System/Library/PrivateFrameworks/VideoConference.framework/Versions/A/VideoCon ference
    0x982dc000 - 0x982defff com.apple.DisplayServicesFW 1.8.2 /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x98516000 - 0x98ecdfff com.apple.QuickTimeComponents.component 7.1.3 /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x990f4000 - 0x990f8fff com.apple.QuickTimeH264.component 7.1.3 /System/Library/QuickTime/QuickTimeH264.component/Contents/MacOS/QuickTimeH264
    0x990fa000 - 0x991defff com.apple.QuickTimeH264.component 7.1.3 /System/Library/QuickTime/QuickTimeH264.component/Contents/Resources/QuickTimeH 264.altivec
    0x9932a000 - 0x993f1fff com.apple.QuickTimeMPEG4.component 7.1.3 /System/Library/QuickTime/QuickTimeMPEG4.component/Contents/MacOS/QuickTimeMPEG 4
    0x99878000 - 0x99883fff com.apple.IMFramework 3.1.1 (427) /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
    0x9988d000 - 0x999eafff com.apple.MessageFramework 2.1.1 (752.3) /System/Library/Frameworks/Message.framework/Versions/B/Message
    0x9b77d000 - 0x9b77ffff Interposers.dylib /usr/libexec/oah/Shims/Interposers.dylib
    24" iMac   Mac OS X (10.4.8)   2.16 GHz, 2 Gb Ram
    24" iMac   Mac OS X (10.4.8)   2.16 GHz, 2 Gb Ram

    In System Preferences > Accounts > Your Mac User
    Account > Login items tab.
    Is there anything in here to do with the EyeTV ?
    Anything to do with any other Video App. ?
    There is an eyeTV Helper app that by default gets set to load on startup. I changed the pref, removed the startup item and rebooted. Error still present.
    Can iMovie see the camera ?
    I had not yet used iMovie but opened it and checked, yes it can use the cam to record clips and edit them.
    I have had no problems with ChatFX so I don't think
    it is that.
    I have since removed it, maybe I'll reinstall it clean, might just tweek something.
    My first suggestion would have been to delete
    com.apple.ichat.plist as this holds the camera info
    but you have done this.
    Yeah, I even deleted any pref that looked related. Just for good measure, I deleted the ichat.plist again just now, no luck. He's the odd thing, right now I have both my main account and a temp account on the machine logged in. I switch to temp, run eyeTV, photobooth etc and ichat connects to the apple test servers like a champ. I swap back to the main login and get the error -21. It will only connect via chat and audio.
    That would make me suggest you delte any EyeTV .plist
    items and see if that releases the camera.
    Just tried that, no help.
    Alos check Activity Monitor in
    APplications/Utilitiies and check to see if any part
    of EyeTV or WoW is running and end it with the big
    red icon top left if it is.
    Bizzarly check here also for a stuck Print Monitor
    and end that if you have it.
    Nothing from wow, killed the eyetv helper as I mentioned above and restarted. I'm running a lexmark 5150 printer on share and it has some processes and hooks into the image capture software. I killed all those processes, no help. It's got nothing in the print queue. I have previously completely disconnected the printer and eyeTV from the usb ports and restarted to see if that was the prob.
    When video did work on the main user, I recall playing with some of the installed BigBang games software. Just to be sure, I have tossed any pref file related to those programs. When in use, the game software failed to make a good video connection (it uses little ichat video windows inside the game app) but it didn't break ichat. I was able to run a video window outside the game for my two kids that were playing and ichat worked fine after that for another day or so.
    24" iMac   Mac OS X (10.4.8)   2.16 GHz, 2 Gb Ram

  • Video Chatting and Internet Sharing at the same time.

    Does anyone know why video chat communication cannot be established while internet sharing, or how to remedy this problem by (what I imagine would be) opening/closing/redirecting a few ports?
    More specifically:
    I share my ethernet connection through my airport connection to my iphone with the ip host/client scheme of 10.10.0.1/10.10.0.2.
    If I don't turn internet sharing off, a video chat connection cannot be established.

    Would you want any phone call due to come to you to go to both your landline and your mobile/cell phone particularly if you did not have both together ?
    It is mostly about the specific needs of iChat needing to be able to place the computer in a specific place compared to the rest of the Internet.
    If you have your Cell phone divert to your Home phone or vice versa how do you know it has also not been answered ?
    More to the point how do you know that someone answering a call you have made to them has not been answered by someone else ?
    In practice you know only one phone can be answered because of the mechanisms put in place that allows you to make the link between cell and Landline.
    It is same for the process used to connect iChat to an iChat Buddy. It makes sure the Network has been set up correctly and is secure.
    It is less about making two connections to the internet in the belief it will be twice as fast.
    (Check a Download in a web Browser and see if it is really any faster with two connections or if Web Browsing is any faster.)
    6:20 PM Friday; February 6, 2009

  • Solution to "Error 8" and "Cancelled Invitation" Problems with video chats

    We spent nearly five hours trying to video chat two Macs, one a 15" MacBook Pro using 10.5.6 across an Airport Extreme and cable modem. The other a 15" DualCore using 10.4.11 across an Airport Extreme and DSL. One runs iChat 4.0.7, the other iChat 3.x. After an invitation to video chat, we'd get three flashes of the other persons avatar, then a slow fade. The invitation would change to "canceled," and the originating party would see an Error -8 in the Connection Doctor.
    I was unable to enter my Buddy in my Buddy List. His name would flash three times and then fade away.
    At all times we could text chat, but no audio and no video.
    We checked firewalls, ports (we changed to 443), privacy blocks; did restarts and resets. Nothing worked.
    …until I deleted my AIM account (actually a .Mac account, but no difference)and then re-entered it. Upon re-entering, all of my information returned and we established the connection on the first try.
    Perfect.

    Hi,
    Also
    http://discussions.apple.com/thread.jspa?messageID=2901979#2901979
    And http://www.ralphjohnsuk.dsl.pipex.com/page16a.html
    In fact Error 8 is anything do do with your ports in the Mac firewall if On, modem, Router, interactions between the two if both devices do DHCP and NAT based thing like Port Forwarding and possibly the ISP blocking port 5060 for SIP/VoIP phone services.
    Certain modems like the Thomson-Alcatel Speedtouch range have SIP bound to port 5060. If it has Version 4 firmware it can be Unbound fully, using Terminal, but later Version 5 an 6 firmware can not be fully Unbound.
    Effectively error 8 has to be fixed on a Set up basis once you have pinned down where the problem is.
    I have hesitated trying to write a FAQ for this as it is so wide in the possibles.
    9:11 PM Friday; July 20, 2007

  • I am unable to initiate a video chat on facebook from a pc to a new ipad mini.  Is this possible and do I need a special app on my iPad?

    I am unable to initiate a video chat on facebook from a pc to a new ipad mini.  Is this possible and do I need a special app on my iPad?   Receivew a message on the PC after request a video chat with the iPad that the connection is too slow and the iPad does not show an incoming video.  JMaruje

    A Mac Mini s a computer you can use with the iPad.
    YO do not need a computer fro backup since yo can backup to iCloud.
    However, sometimes software glitches occur and require connecting the device to a compute to restore vi iTuunes.
    You can control a computer via an iPod with an app like TeamViewer or LogMeIn. There are others too.
    You can also use an iPad a a SECONDAY monitor for a computer. with other apps.
    You need a dedicated monitor,  keyboard and mouse to setup the Mini. You can use a PC USB mouse and keyboard.

  • One-way video chat failure

    How do I set up one way video chat between iChatAV and AIM Pro on a PC?
    I'm using the Mac and iChat, and my buddy is using AIM Pro on Microsoft Windows. I'm the one with the camera (which is the built-in one on my MacBook).
    No Camera on the PC but starting on the PC end and then using the Buddy List menu items to start a Video chat to the Mac with a camera. I've never had video success at all, so even starting on the PC end wouldn't work.
    I'm pretty good at understanding how to get around a computer, but the data information is very confusing. So the log reports make no sense to me.
    but here is the information on my computer, because i have concluded that the problem is on my side of the connection. I also have wireless internet, my buddy i do believe is connected via cable.
    Model Name: Mac
    Model Identifier: MacBook2,1
    Processor Name: Intel Core 2 Duo
    Processor Speed: 2.16 GHz
    Number Of Processors: 1
    Total Number Of Cores: 2
    L2 Cache (per processor): 4 MB
    Memory: 2 GB
    Bus Speed: 667 MHz
    Boot ROM Version: MB21.00A5.B06
    SMC Version: 1.17f0
    Serial Number: W87222RAYA8
    Sudden Motion Sensor:
    State: Enabled
    My Airport ID: 00:1b:63:c2:bb:e6
    My Ethernet ID: 00:1b:63:2e:1e:c8
    AirPort Card Information:
    Wireless Card Type: AirPort Extreme (0x168C, 0x87)
    Wireless Card Locale: USA
    Wireless Card Firmware Version: 1.0.47
    Current Wireless Network: linksys
    Wireless Channel: 6
    My iChat version: 3.1.8 (v445)
    iChat:
    Version: 3.1.8
    Last Modified: 4/28/07 2:34 AM
    Kind: Universal
    Get Info String: iChat 3.1.8, Copyright © 2000-2007 Apple Inc. All Rights Reserved.
    Location: /Applications/iChat.app
    server: login.oscar.aol.com
    port: 5190
    Built-in iSight:
    Version: 1.84
    Bus Power (mA): 500
    Speed: Up to 480 Mb/sec
    Manufacturer: Micron
    Product ID: 0x8501
    Vendor ID: 0x05ac (Apple Computer, Inc.)
    Built-in FireWire:
    Type: FireWire
    Hardware: FireWire
    BSD Device Name: fw0
    IPv4:
    Configuration Method: DHCP
    IPv6:
    Configuration Method: Automatic
    Proxies:
    Proxy Configuration Method: Manual
    ExcludeSimpleHostnames: 0
    FTP Passive Mode: Yes
    Auto Discovery Enabled: No
    Ethernet:
    MAC Address: 00:1b:63:ff:fe:6e:bc:ea
    Media Options: Full Duplex
    Media Subtype: autoselect
    Intel GMA 950:
    Chipset Model: GMA 950
    Type: Display
    Bus: Built-In
    VRAM (Total): 64 MB of shared system memory
    Vendor: Intel (0x8086)
    Device ID: 0x27a2
    Revision ID: 0x0003
    Displays:
    Color LCD:
    Display Type: LCD
    Resolution: 1280 x 800
    Depth: 32-bit Color
    Built-In: Yes
    Core Image: Supported
    Main Display: Yes
    Mirror: Off
    Online: Yes
    Quartz Extreme: Supported
    Display:
    Status: No display connected
    and here is an error log:
    Chat ended with error -22
    2007-06-19 01:52:39 -0400: There is insufficient bandwidth to maintain the conference.
    The QuickTime Preference for Connection Speed is configured as 0 Kbps, which is too slow for a conference. If this setting is incorrect, you can change it by going to the QuickTime System Preference and choosing the “Connection” tab.
    Chat ended with error -22
    Chat ended with error -22
    2007-06-19 21:00:23 -0400: There is insufficient bandwidth to maintain the conference.
    The QuickTime Preference for Connection Speed is configured as 0 Kbps, which is too slow for a conference. If this setting is incorrect, you can change it by going to the QuickTime System Preference and choosing the “Connection” tab.
    Chat ended with error -22
    Chat ended with error -22
    2007-06-19 21:02:46 -0400: There is insufficient bandwidth to maintain the conference.
    The QuickTime Preference for Connection Speed is configured as 0 Kbps, which is too slow for a conference. If this setting is incorrect, you can change it by going to the QuickTime System Preference and choosing the “Connection” tab.
    Chat ended with error -22
    Chat ended with error -22
    and another error log:
    Date/Time: 2007-06-19 22:29:26.891 -0400
    OS Version: 10.4.9 (Build 8P4112)
    Report Version: 4
    iChat Connection Log:
    AVChat started with ID 1164043861.
    theactedguitar: State change from AVChatNoState to AVChatStateWaiting.
    0x1c11f270: State change from AVChatNoState to AVChatStateInvited.
    0x1c11f270: State change from AVChatStateInvited to AVChatStateConnecting.
    theactedguitar: State change from AVChatStateWaiting to AVChatStateConnecting.
    0x1c11f270: State change from AVChatStateConnecting to AVChatStateConnected.
    theactedguitar: State change from AVChatStateConnecting to AVChatStateConnected.
    0x1c11f270: State change from AVChatStateConnected to AVChatStateEnded.
    2007-06-19 22:29:22 -0400: Participant 0x1c11f270: VC connection failed.The QuickTime Preference for Connection Speed is configured as 0 Kbps, which is too slow for a conference.Detected 0 kbps upstream and 0 kbps downstream bandwidth; 50 kbps required.
    Chat ended with error -22
    theactedguitar: State change from AVChatStateConnected to AVChatStateEnded.
    Chat ended with error -22
    Video Conference Error Report:
    @:0 type=4 (00000000/22)
    [VCBANDWIDTH_DETECTIONFAILURE]
    [20]
    @SIP/Transport.c:121 type=4 (00000000/0)
    [OPTIONS sip:[email protected] SIP/2.0
    From: <sip:[email protected]:5061>;tag=1c25233
    To: sip:[email protected]:5060;tag=2104987787
    Call-Id: s20020f0fd8c5c045
    Cseq: 28209 OPTIONS
    Contact: <sip:[email protected]:5061>
    Max-Forwards: 70
    User-Agent: COOL/4.6.8.5225 SIPxua/2.9.2.1008 (WinNT)
    Supported: replaces
    Via: SIP/2.0/UDP uen0.0:5061;branch=z9hG4bK-0957b002002c;rport
    Content-Length: 0
    @SIP/Transport.c:121 type=4 (00000000/0)
    [ACK sip:[email protected] SIP/2.0
    Contact: <sip:[email protected]:5061>
    From: <sip:[email protected]:5061>;tag=1c25233
    To: <sip:[email protected]>;tag=2104987787
    Call-Id: s20020f0fd8c5c045
    Cseq: 28208 ACK
    Max-Forwards: 70
    User-Agent: COOL/4.6.8.5225 SIPxua/2.9.2.1008 (WinNT)
    Via: SIP/2.0/UDP uen0.0:5061;branch=z9hG4bK-ee65cb024204
    Content-Length: 0
    @SIP/Transport.c:121 type=4 (00000000/0)
    [ACK sip:[email protected] SIP/2.0
    Contact: <sip:[email protected]:5061>
    From: <sip:[email protected]:5061>;tag=1c25233
    To: <sip:[email protected]>;tag=2104987787
    Call-Id: s20020f0fd8c5c045
    Cseq: 28208 ACK
    Max-Forwards: 70
    User-Agent: COOL/4.6.8.5225 SIPxua/2.9.2.1008 (WinNT)
    Via: SIP/2.0/UDP uen0.0:5061;branch=z9hG4bK-ee65cb024204
    Content-Length: 0
    @SIP/Transport.c:121 type=4 (00000000/0)
    [INVITE sip:[email protected]:5060 SIP/2.0
    From: <sip:[email protected]:5061>;tag=1c25233
    To: sip:[email protected]:5060
    Call-Id: s20020f0fd8c5c045
    Cseq: 28208 INVITE
    Contact: <sip:[email protected]:5061>
    Content-Type: application/sdp
    Content-Length: 548
    Max-Forwards: 70
    User-Agent: COOL/4.6.8.5225 SIPxua/2.9.2.1008 (WinNT)
    Supported: replaces
    Via: SIP/2.0/UDP uen0.0:5061;branch=z9hG4bK-ee65cb024204;rport
    [v=0
    o=sipX 5 5 IN IP4 uen0.0
    s=call
    c=IN IP4 uen0.0
    t=0 0
    m=audio 16384 RTP/AVP 96 97 98 99 0 8 100 3 101 4
    a=rtpmap:96 isac/16000/1
    a=rtpmap:97 isaclc/16000/1
    a=rtpmap:98 eg711u/8000/1
    a=rtpmap:99 eg711a/8000/1
    a=rtpmap:0 pcmu/8000/1
    a=rtpmap:8 pcma/8000/1
    a=rtpmap:100 ilbc/8000/1
    a=fmtp:100 mode=30
    a=rtpmap:3 gsm/8000/1
    a=rtpmap:101 telephone-event/8000/1
    a=rtpmap:4 g723/8000/1
    m=video 16386 RTP/AVP 102 34
    a=rtpmap:102 vp71/90000/1
    a=fmtp:102 size:QCIF/SQCIF
    a=rtpmap:34 h263/90000/1
    a=fmtp:34 imagesize 0
    @SIP/Transport.c:121 type=4 (00000000/0)
    [OPTIONS sip:m.0 SIP/2.0
    From: sip:uen0.0:5061;tag=2285325336
    To: sip:m.0
    Call-Id: 118230657112798-ping-uen0.0
    Cseq: 2529 OPTIONS
    User-Agent: COOL/4.6.8.5225 SIPxua/2.9.2.1008 (WinNT)
    Contact: sip:uen0.0:5061
    Via: SIP/2.0/UDP uen0.0:5061;rport
    Content-Length: 0
    @SIP/Transport.c:121 type=4 (00000000/0)
    Video Conference Support Report:
    @SIP/Transport.c:1218 type=1 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP uen0.0:5061;branch=z9hG4bK-0957b002002c
    To: <sip:[email protected]>;tag=2104987787
    From: <sip:[email protected]:5061>;tag=1c25233
    Call-ID: s20020f0fd8c5c045
    CSeq: 28209 OPTIONS
    Contact: <sip:[email protected]>;isfocus
    Allow: INVITE, ACK, OPTIONS, BYE, CANCEL, MESSAGE, REFER, SUBSCRIBE, NOTIFY, INFO
    Allow-Events: conference, refer
    Accept: application/sdp, message/sipfrag, application/conference-info+xml
    User-Agent: Viceroy 1.2
    Content-Length: 0
    @SIP/Transport.c:1218 type=1 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP uen0.0:5061;branch=z9hG4bK-ee65cb024204
    To: <sip:[email protected]>;tag=2104987787
    From: <sip:[email protected]:5061>;tag=1c25233
    Call-ID: s20020f0fd8c5c045
    CSeq: 28208 INVITE
    Contact: <sip:[email protected]>;isfocus
    User-Agent: Viceroy 1.2
    Content-Type: application/sdp
    Content-Length: 411
    v=0
    o=Liz 0 0 IN IP4 m.0
    s=call
    c=IN IP4 m.0
    b=AS:2147483647
    t=0 0
    a=hwi:1028:2:2160
    a=bandwidthDetection:NO
    a=iChatEncryption:NO
    m=audio 16386 RTP/AVP 3
    a=rtcp:16387
    a=rtpmap:3 GSM/8000
    a=rtpID:1578979932
    m=video 16384 RTP/AVP 34
    a=rtcp:16387
    a=RTCP:AUDIO 16387 VIDEO 16385
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 0 rules 10:176:144
    a=framerate:10
    a=rtpID:1797079687
    @SIP/Transport.c:1218 type=1 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP uen0.0:5061;branch=z9hG4bK-ee65cb024204
    To: <sip:[email protected]>;tag=2104987787
    From: <sip:[email protected]:5061>;tag=1c25233
    Call-ID: s20020f0fd8c5c045
    CSeq: 28208 INVITE
    Contact: <sip:[email protected]>;isfocus
    User-Agent: Viceroy 1.2
    Content-Type: application/sdp
    Content-Length: 411
    v=0
    o=Liz 0 0 IN IP4 m.0
    s=call
    c=IN IP4 m.0
    b=AS:2147483647
    t=0 0
    a=hwi:1028:2:2160
    a=bandwidthDetection:NO
    a=iChatEncryption:NO
    m=audio 16386 RTP/AVP 3
    a=rtcp:16387
    a=rtpmap:3 GSM/8000
    a=rtpID:1578979932
    m=video 16384 RTP/AVP 34
    a=rtcp:16387
    a=RTCP:AUDIO 16387 VIDEO 16385
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 0 rules 10:176:144
    a=framerate:10
    a=rtpID:1797079687
    @:0 type=2 (00000000/0)
    [VCVIDEO_INCOMINGATTEMPT]
    [3]
    @SIP/Transport.c:1218 type=1 (00000000/0)
    [SIP/2.0 180 Ringing
    Via: SIP/2.0/UDP uen0.0:5061;branch=z9hG4bK-ee65cb024204
    To: <sip:[email protected]>;tag=2104987787
    From: <sip:[email protected]:5061>;tag=1c25233
    Call-ID: s20020f0fd8c5c045
    CSeq: 28208 INVITE
    Contact: <sip:[email protected]>;isfocus
    User-Agent: Viceroy 1.2
    Content-Length: 0
    @SIP/Transport.c:1218 type=1 (00000000/0)
    [SIP/2.0 100 Trying
    Via: SIP/2.0/UDP uen0.0:5061;branch=z9hG4bK-ee65cb024204
    To: <sip:[email protected]>
    From: <sip:[email protected]:5061>;tag=1c25233
    Call-ID: s20020f0fd8c5c045
    CSeq: 28208 INVITE
    User-Agent: Viceroy 1.2
    Content-Length: 0
    @SIP/Transport.c:1218 type=1 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP uen0.0:5061
    To: <sip:m.0>;tag=700186355
    From: <sip:uen0.0:5061>;tag=2285325336
    Call-ID: 118230657112798-ping-uen0.0
    CSeq: 2529 OPTIONS
    Contact: <sip:[email protected]>;isfocus
    Allow: INVITE, ACK, OPTIONS, BYE, CANCEL, MESSAGE, REFER, SUBSCRIBE, NOTIFY, INFO
    Allow-Events: conference, refer
    Accept: application/sdp, message/sipfrag, application/conference-info+xml
    User-Agent: Viceroy 1.2
    Content-Length: 0
    Video Conference User Report:
    Binary Images Description for "iChat":
    0x1000 - 0x17dfff com.apple.iChat 3.1.8 (445) /Applications/iChat.app/Contents/MacOS/iChat
    0x67e000 - 0x67efff com.apple.osax.digihub 1.0 /System/Library/ScriptingAdditions/Digital Hub Scripting.osax/Contents/MacOS/Digital Hub Scripting
    0x6bc000 - 0x6e8fff com.apple.osax.standardadditions 1.10.7 (???) /System/Library/ScriptingAdditions/StandardAdditions.osax/Contents/MacOS/Standa rdAdditions
    0x15b64000 - 0x15b6dfff com.apple.IOFWDVComponents 1.9.0 /System/Library/Components/IOFWDVComponents.component/Contents/MacOS/IOFWDVComp onents
    0x15b82000 - 0x15b87fff com.apple.audio.AppleHDAHALPlugIn 1.2.9 (1.2.9a4) /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x15bac000 - 0x15be8fff com.apple.QuickTimeFireWireDV.component 7.1.6 /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0x15bf4000 - 0x15c24fff com.apple.QuickTimeIIDCDigitizer 7.1.6 /System/Library/QuickTime/QuickTimeIIDCDigitizer.component/Contents/MacOS/Quick TimeIIDCDigitizer
    0x15c2e000 - 0x15c6afff com.apple.QuickTimeUSBVDCDigitizer 1.7.5 /System/Library/QuickTime/QuickTimeUSBVDCDigitizer.component/Contents/MacOS/Qui ckTimeUSBVDCDigitizer
    0x15c8e000 - 0x15de7fff com.apple.opengl 1.4.16 /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x15e13000 - 0x15e6cfff com.apple.driver.AppleIntelGMA950GLDriver 1.4.52 (4.5.2) /System/Library/Extensions/AppleIntelGMA950GLDriver.bundle/Contents/MacOS/Apple IntelGMA950GLDriver
    0x15e73000 - 0x15e8ffff com.apple.opengl 1.4.16 /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLDriver.bundl e/GLDriver
    0x15e96000 - 0x15ebafff com.apple.opengl 1.4.16 /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloa t.bundle/GLRendererFloat
    0x161b4000 - 0x161b7fff com.apple.audio.AudioIPCPlugIn 1.0.2 /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x161d3000 - 0x161fdfff com.apple.audio.SoundManager.Components 3.9.2 /System/Library/Components/SoundManagerComponents.component/Contents/MacOS/Soun dManagerComponents
    0x167e4000 - 0x167e4fff com.apple.SpotLightCM 1.0 (121.36) /System/Library/Contextual Menu Items/SpotlightCM.plugin/Contents/MacOS/SpotlightCM
    0x17319000 - 0x1731bfff com.apple.AutomatorCMM 1.0.1 (87) /System/Library/Contextual Menu Items/AutomatorCMM.plugin/Contents/MacOS/AutomatorCMM
    0x1733f000 - 0x17342fff com.apple.iokit.IOQTComponents 1.4 /System/Library/Components/IOQTComponents.component/Contents/MacOS/IOQTComponen ts
    0x17558000 - 0x17571fff com.apple.AppleIntermediateCodec 1.1 (141) /Library/QuickTime/AppleIntermediateCodec.component/Contents/MacOS/AppleInterme diateCodec
    0x17576000 - 0x1758ffff com.apple.applepixletvideo 1.2.9 (1.2d9) /System/Library/QuickTime/ApplePixletVideo.component/Contents/MacOS/ApplePixlet Video
    0x176cd000 - 0x176d8fff com.apple.airport.diskmenu 1.1 (110.18) /System/Library/Contextual Menu Items/AirPort Disk Menu.plugin/Contents/MacOS/AirPort Disk Menu
    0x176dd000 - 0x176e1fff com.apple.FolderActionsMenu 1.3.1 /System/Library/Contextual Menu Items/FolderActionsMenu.plugin/Contents/MacOS/FolderActionsMenu
    0x70000000 - 0x700fbfff com.apple.audio.units.Components 1.4.5 /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
    0x8fe00000 - 0x8fe4afff dyld /usr/lib/dyld
    0x90000000 - 0x90170fff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x901c0000 - 0x901c2fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x901c4000 - 0x90201fff com.apple.CoreText 1.1.2 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90228000 - 0x902fefff com.apple.ApplicationServices.ATS 2.0.6 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x9031e000 - 0x90773fff com.apple.CoreGraphics 1.258.75 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x9080a000 - 0x908d2fff com.apple.CoreFoundation 6.4.7 (368.28) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x90910000 - 0x90910fff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x90912000 - 0x90a05fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x90a55000 - 0x90ad4fff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90afd000 - 0x90b61fff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x90bd0000 - 0x90bd7fff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x90bdc000 - 0x90c4ffff com.apple.framework.IOKit 1.4.6 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90c64000 - 0x90c76fff libauto.dylib /usr/lib/libauto.dylib
    0x90c7c000 - 0x90f22fff com.apple.CoreServices.CarbonCore 682.23 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90f65000 - 0x90fcdfff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x91006000 - 0x91044fff com.apple.CFNetwork 129.20 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x91057000 - 0x91067fff com.apple.WebServices 1.1.3 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x91072000 - 0x910f1fff com.apple.SearchKit 1.0.5 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x9112b000 - 0x91149fff com.apple.Metadata 10.4.4 (121.36) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x91155000 - 0x91163fff libz.1.dylib /usr/lib/libz.1.dylib
    0x91166000 - 0x91305fff com.apple.security 4.5.2 (29774) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x91403000 - 0x9140bfff com.apple.DiskArbitration 2.1.1 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x91412000 - 0x91419fff libbsm.dylib /usr/lib/libbsm.dylib
    0x9141d000 - 0x91443fff com.apple.SystemConfiguration 1.8.6 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91455000 - 0x914cbfff com.apple.audio.CoreAudio 3.0.4 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x9151c000 - 0x9151cfff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x9151e000 - 0x9154afff com.apple.AE 314 (313) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x9155d000 - 0x91631fff com.apple.ColorSync 4.4.9 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x9166c000 - 0x916dffff com.apple.print.framework.PrintCore 4.6 (177.13) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9170d000 - 0x917b6fff com.apple.QD 3.10.24 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x917dc000 - 0x91827fff com.apple.HIServices 1.5.2 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x91846000 - 0x9185cfff com.apple.LangAnalysis 1.6.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x91868000 - 0x91883fff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x9188e000 - 0x918cbfff com.apple.LaunchServices 182 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x918df000 - 0x918ebfff com.apple.speech.synthesis.framework 3.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x918f2000 - 0x91931fff com.apple.ImageIO.framework 1.5.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x91944000 - 0x919f6fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91a3c000 - 0x91a52fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x91a57000 - 0x91a75fff com.apple.ImageIO.framework 1.5.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91a7a000 - 0x91ad9fff com.apple.ImageIO.framework 1.5.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91aeb000 - 0x91aeffff com.apple.ImageIO.framework 1.5.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91af1000 - 0x91b75fff com.apple.ImageIO.framework 1.5.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91b79000 - 0x91bb6fff com.apple.ImageIO.framework 1.5.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91bbc000 - 0x91bd6fff com.apple.ImageIO.framework 1.5.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91bdb000 - 0x91bddfff com.apple.ImageIO.framework 1.5.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91bdf000 - 0x91cbdfff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x91cda000 - 0x91cdafff com.apple.Accelerate 1.3.1 (Accelerate 1.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91cdc000 - 0x91d6afff com.apple.vImage 2.5 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91d71000 - 0x91d71fff com.apple.Accelerate.vecLib 3.3.1 (vecLib 3.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91d73000 - 0x91dccfff com.apple.Accelerate.vecLib 3.3.1 (vecLib 3.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x91dd5000 - 0x91df9fff com.apple.Accelerate.vecLib 3.3.1 (vecLib 3.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x91e01000 - 0x9220afff com.apple.Accelerate.vecLib 3.3.1 (vecLib 3.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x92244000 - 0x925f8fff com.apple.Accelerate.vecLib 3.3.1 (vecLib 3.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x92625000 - 0x92712fff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x92714000 - 0x92791fff com.apple.DesktopServices 1.3.6 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x927d2000 - 0x92a02fff com.apple.Foundation 6.4.8 (567.29) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92b0e000 - 0x92b18fff com.apple.framework.AppleTalk 1.2.0 (???) /System/Library/Frameworks/AppleTalk.framework/Versions/A/AppleTalk
    0x92b1c000 - 0x92b33fff com.apple.opengl 1.4.16 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92b3e000 - 0x92b96fff com.apple.opengl 1.4.16 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92baa000 - 0x92baafff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92bac000 - 0x92bbcfff com.apple.ImageCapture 3.0.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92bcb000 - 0x92bd3fff com.apple.speech.recognition.framework 3.6 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x92bd9000 - 0x92bdffff com.apple.securityhi 2.0.1 (24742) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x92be5000 - 0x92c76fff com.apple.ink.framework 101.2.1 (71) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x92c8a000 - 0x92c8efff com.apple.help 1.0.3 (32.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x92c91000 - 0x92caffff com.apple.openscripting 1.2.5 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x92cc1000 - 0x92cc7fff com.apple.print.framework.Print 5.2 (192.4) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x92ccd000 - 0x92d30fff com.apple.htmlrendering 66.1 (1.1.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x92d57000 - 0x92d98fff com.apple.NavigationServices 3.4.4 (3.4.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x92dbf000 - 0x92dcdfff com.apple.audio.SoundManager 3.9.1 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x92dd4000 - 0x92dd9fff com.apple.CommonPanels 1.2.3 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x92dde000 - 0x930d3fff com.apple.HIToolbox 1.4.9 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x931d9000 - 0x931e4fff com.apple.opengl 1.4.16 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x931e9000 - 0x93204fff com.apple.DirectoryService.Framework 3.3 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x93254000 - 0x93254fff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x93256000 - 0x9390cfff com.apple.AppKit 6.4.8 (824.42) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x93c8d000 - 0x93d08fff com.apple.CoreData 91 (92.1) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x93d41000 - 0x93dfbfff com.apple.audio.toolbox.AudioToolbox 1.4.5 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x93e3e000 - 0x93e3efff com.apple.audio.units.AudioUnit 1.4.3 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x93e40000 - 0x94001fff com.apple.QuartzCore 1.4.12 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x94047000 - 0x94088fff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x94090000 - 0x940cafff com.apple.opengl 1.4.16 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x940cf000 - 0x940e5fff com.apple.CoreVideo 1.4 /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x9412b000 - 0x94173fff com.apple.bom 8.5 (86.3) /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x9417d000 - 0x941bbfff com.apple.vmutils 4.0.2 (93.1) /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x941ff000 - 0x94210fff com.apple.securityfoundation 2.2.1 (28150) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x9421e000 - 0x9425cfff com.apple.securityinterface 2.2.1 (27695) /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x94278000 - 0x94287fff com.apple.CoreGraphics 1.258.75 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x9428e000 - 0x94299fff com.apple.CoreGraphics 1.258.75 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x942e5000 - 0x942fffff com.apple.CoreGraphics 1.258.75 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x94305000 - 0x94604fff com.apple.QuickTime 7.1.6 /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x94786000 - 0x948ccfff com.apple.AddressBook.framework 4.0.4 (485.1) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x94958000 - 0x94967fff com.apple.DSObjCWrappers.Framework 1.1 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x9496e000 - 0x94997fff com.apple.LDAPFramework 1.4.2 (69.1.1) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x9499d000 - 0x949acfff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
    0x949b0000 - 0x949d5fff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x949e1000 - 0x949fefff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x94a05000 - 0x94a6bfff com.apple.Bluetooth 1.7.14 (1.7.14f14) /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x94baa000 - 0x94c82fff edu.mit.Kerberos 5.5.24 /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x94d2a000 - 0x94dbcfff com.apple.WebKit 419 /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x94e16000 - 0x94e98fff com.apple.JavaScriptCore 418.3 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/JavaScriptCor e.framework/Versions/A/JavaScriptCore
    0x94ed1000 - 0x951b0fff com.apple.WebCore 418.21 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x9532f000 - 0x95352fff libxslt.1.dylib /usr/lib/libxslt.1.dylib
    0x955c8000 - 0x955ccfff com.apple.URLMount 2.1.7 /System/Library/PrivateFrameworks/URLMount.framework/Versions/A/URLMount
    0x95ac1000 - 0x95ac2fff libCyrillicConverter.dylib /System/Library/CoreServices/Encodings/libCyrillicConverter.dylib
    0x95ac4000 - 0x95ac5fff libGreekConverter.dylib /System/Library/CoreServices/Encodings/libGreekConverter.dylib
    0x95ac9000 - 0x95adffff libJapaneseConverter.dylib /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
    0x95ae1000 - 0x95b02fff libKoreanConverter.dylib /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
    0x95b0f000 - 0x95b1dfff libSimplifiedChineseConverter.dylib /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0x95b22000 - 0x95b23fff libThaiConverter.dylib /System/Library/CoreServices/Encodings/libThaiConverter.dylib
    0x95b25000 - 0x95b37fff libTraditionalChineseConverter.dylib /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    0x964da000 - 0x964dafff com.apple.vecLib 3.3.1 (vecLib 3.3.1) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x969c1000 - 0x969e3fff com.apple.speech.LatentSemanticMappingFramework 2.5 /System/Library/PrivateFrameworks/LatentSemanticMapping.framework/Versions/A/La tentSemanticMapping
    0x96a54000 - 0x96b2bfff com.apple.opengl 1.4.16 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x96b46000 - 0x96b47fff com.apple.opengl 1.4.16 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLSystem.dy lib
    0x96b49000 - 0x96b4efff com.apple.agl 2.5.9 (AGL-2.5.9) /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x96ca5000 - 0x96ca5fff com.apple.MonitorPanelFramework 1.1.1 /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x96e5f000 - 0x96e73fff com.apple.AppleShareClient 1.5.2 /System/Library/Frameworks/AppleShareClient.framework/Versions/A/AppleShareClie nt
    0x96e7c000 - 0x96ebbfff com.apple.AppleShareClientCore 1.5.2 /System/Library/Frameworks/AppleShareClientCore.framework/Versions/A/AppleShare ClientCore
    0x97407000 - 0x974f0fff com.apple.viceroy.framework 278.3.10 /System/Library/PrivateFrameworks/VideoConference.framework/Versions/A/VideoCon ference
    0x97c34000 - 0x97c36fff com.apple.DisplayServicesFW 1.8.2 /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x97e63000 - 0x98b38fff com.apple.QuickTimeComponents.component 7.1.6 /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x98d84000 - 0x98d86fff com.apple.QuickTimeH264.component 7.1.6 /System/Library/QuickTime/QuickTimeH264.component/Contents/MacOS/QuickTimeH264
    0x98d88000 - 0x98f30fff com.apple.QuickTimeH264.component 7.1.6 /System/Library/QuickTime/QuickTimeH264.component/Contents/Resources/QuickTimeH 264.scalar
    0x98fa0000 - 0x99063fff com.apple.QuickTimeMPEG4.component 7.1.6 /System/Library/QuickTime/QuickTimeMPEG4.component/Contents/MacOS/QuickTimeMPEG 4
    0x994fa000 - 0x99505fff com.apple.IMFramework 3.1.4 (429) /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
    0x9950f000 - 0x9967bfff com.apple.MessageFramework 2.1.1 (752.3) /System/Library/Frameworks/Message.framework/Versions/B/Message

    Date/Time: 2007-06-19 21:00:38.307 -0400
    OS Version: 10.4.9 (Build 8P4112)
    Report Version: 4
    iChat Connection Log:
    AVChat started with ID 2658061728.
    theactedguitar: State change from AVChatNoState to AVChatStateWaiting.
    0x1c1384f0: State change from AVChatNoState to AVChatStateInvited.
    0x1c1384f0: State change from AVChatStateInvited to AVChatStateConnecting.
    theactedguitar: State change from AVChatStateWaiting to AVChatStateConnecting.
    0x1c1384f0: State change from AVChatStateConnecting to AVChatStateConnected.
    theactedguitar: State change from AVChatStateConnecting to AVChatStateConnected.
    0x1c1384f0: State change from AVChatStateConnected to AVChatStateEnded.
    2007-06-19 21:00:23 -0400: Participant 0x1c1384f0: VC connection failed.The QuickTime Preference for Connection Speed is configured as 0 Kbps, which is too slow for a conference.Detected 0 kbps upstream and 0 kbps downstream bandwidth; 50 kbps required.
    Chat ended with error -22
    theactedguitar: State change from AVChatStateConnected to AVChatStateEnded.
    Chat ended with error -22
    Video Conference Error Report:
    @SIP/Transport.c:121 type=4 (00000000/0)
    [OPTIONS sip:[email protected] SIP/2.0
    From: <sip:[email protected]:5061>;tag=1c9406
    To: sip:[email protected]:5060;tag=1802682038
    Call-Id: s200278131c2a636f
    Cseq: 21740 OPTIONS
    Contact: <sip:[email protected]:5061>
    Max-Forwards: 70
    User-Agent: COOL/4.6.8.5225 SIPxua/2.9.2.1008 (WinNT)
    Supported: replaces
    Via: SIP/2.0/UDP uen0.0:5061;branch=z9hG4bK-e6854b1ff1ac;rport
    Content-Length: 0
    @:0 type=4 (00000000/2)
    [VCBANDWIDTH_DETECTIONFAILURE]
    [20]
    @SIP/Transport.c:121 type=4 (00000000/0)
    [ACK sip:[email protected] SIP/2.0
    Contact: <sip:[email protected]:5061>
    From: <sip:[email protected]:5061>;tag=1c9406
    To: <sip:[email protected]>;tag=1802682038
    Call-Id: s200278131c2a636f
    Cseq: 21739 ACK
    Max-Forwards: 70
    User-Agent: COOL/4.6.8.5225 SIPxua/2.9.2.1008 (WinNT)
    Via: SIP/2.0/UDP uen0.1:5061;branch=z9hG4bK-2c8df72b5983
    Content-Length: 0
    @SIP/Transport.c:121 type=4 (00000000/0)
    [ACK sip:[email protected] SIP/2.0
    Contact: <sip:[email protected]:5061>
    From: <sip:[email protected]:5061>;tag=1c9406
    To: <sip:[email protected]>;tag=1802682038
    Call-Id: s200278131c2a636f
    Cseq: 21739 ACK
    Max-Forwards: 70
    User-Agent: COOL/4.6.8.5225 SIPxua/2.9.2.1008 (WinNT)
    Via: SIP/2.0/UDP uen0.0:5061;branch=z9hG4bK-2c8df72b5983
    Content-Length: 0
    @SIP/Transport.c:121 type=4 (00000000/0)
    [INVITE sip:[email protected]:5060 SIP/2.0
    From: <sip:[email protected]:5061>;tag=1c9406
    To: sip:[email protected]:5060
    Call-Id: s200278131c2a636f
    Cseq: 21739 INVITE
    Content-Type: application/sdp
    Content-Length: 563
    Max-Forwards: 70
    User-Agent: COOL/4.6.8.5225 SIPxua/2.9.2.1008 (WinNT)
    Supported: replaces
    Via: SIP/2.0/UDP uen0.0:5061;branch=z9hG4bK-2c8df72b5983;rport
    Contact: sip:[email protected]:5061
    [v=0
    o=sipX 5 5 IN IP4 uen0.0
    s=call
    c=IN IP4 uen0.0
    t=0 0
    m=audio 16384 RTP/AVP 96 97 98 99 0 8 100 3 101 4
    a=rtpmap:96 isac/16000/1
    a=rtpmap:97 isaclc/16000/1
    a=rtpmap:98 eg711u/8000/1
    a=rtpmap:99 eg711a/8000/1
    a=rtpmap:0 pcmu/8000/1
    a=rtpmap:8 pcma/8000/1
    a=rtpmap:100 ilbc/8000/1
    a=fmtp:100 mode=30
    a=rtpmap:3 gsm/8000/1
    a=rtpmap:101 telephone-event/8000/1
    a=rtpmap:4 g723/8000/1
    m=video 16386 RTP/AVP 102 34
    a=rtpmap:102 vp71/90000/1
    a=fmtp:102 size:VGA/CIF/QVGA/QCIF/SQCIF
    a=rtpmap:34 h263/90000/1
    a=fmtp:34 imagesize 1
    @SIP/Transport.c:121 type=4 (00000000/0)
    [OPTIONS sip:m.0 SIP/2.0
    From: sip:uen0.1:5061;tag=258066396
    To: sip:m.0
    Call-Id: 11823012313477-ping-uen0.1
    Cseq: 10171 OPTIONS
    User-Agent: COOL/4.6.8.5225 SIPxua/2.9.2.1008 (WinNT)
    Contact: sip:uen0.1:5061
    Via: SIP/2.0/UDP uen0.1:5061;rport
    Content-Length: 0
    @SIP/Transport.c:121 type=4 (00000000/0)
    Video Conference Support Report:
    @SIP/Transport.c:1218 type=1 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP uen0.0:5061;branch=z9hG4bK-e6854b1ff1ac
    To: <sip:[email protected]>;tag=1802682038
    From: <sip:[email protected]:5061>;tag=1c9406
    Call-ID: s200278131c2a636f
    CSeq: 21740 OPTIONS
    Contact: <sip:[email protected]>;isfocus
    Allow: INVITE, ACK, OPTIONS, BYE, CANCEL, MESSAGE, REFER, SUBSCRIBE, NOTIFY, INFO
    Allow-Events: conference, refer
    Accept: application/sdp, message/sipfrag, application/conference-info+xml
    User-Agent: Viceroy 1.2
    Content-Length: 0
    @SIP/Transport.c:1218 type=1 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP uen0.0:5061;branch=z9hG4bK-2c8df72b5983
    To: <sip:[email protected]>;tag=1802682038
    From: <sip:[email protected]:5061>;tag=1c9406
    Call-ID: s200278131c2a636f
    CSeq: 21739 INVITE
    Contact: <sip:[email protected]>;isfocus
    User-Agent: Viceroy 1.2
    Content-Type: application/sdp
    Content-Length: 412
    v=0
    o=Liz 0 0 IN IP4 m.0
    s=call
    c=IN IP4 m.0
    b=AS:2147483647
    t=0 0
    a=hwi:1028:2:2160
    a=bandwidthDetection:NO
    a=iChatEncryption:NO
    m=audio 16386 RTP/AVP 3
    a=rtcp:16387
    a=rtpmap:3 GSM/8000
    a=rtpID:-360567252
    m=video 16384 RTP/AVP 34
    a=rtcp:16387
    a=RTCP:AUDIO 16387 VIDEO 16385
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 10:352:288
    a=framerate:10
    a=rtpID:-1868264839
    @SIP/Transport.c:1218 type=1 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP uen0.0:5061;branch=z9hG4bK-2c8df72b5983
    To: <sip:[email protected]>;tag=1802682038
    From: <sip:[email protected]:5061>;tag=1c9406
    Call-ID: s200278131c2a636f
    CSeq: 21739 INVITE
    Contact: <sip:[email protected]>;isfocus
    User-Agent: Viceroy 1.2
    Content-Type: application/sdp
    Content-Length: 412
    v=0
    o=Liz 0 0 IN IP4 m.0
    s=call
    c=IN IP4 m.0
    b=AS:2147483647
    t=0 0
    a=hwi:1028:2:2160
    a=bandwidthDetection:NO
    a=iChatEncryption:NO
    m=audio 16386 RTP/AVP 3
    a=rtcp:16387
    a=rtpmap:3 GSM/8000
    a=rtpID:-360567252
    m=video 16384 RTP/AVP 34
    a=rtcp:16387
    a=RTCP:AUDIO 16387 VIDEO 16385
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 10:352:288
    a=framerate:10
    a=rtpID:-1868264839
    @:0 type=2 (00000000/0)
    [VCVIDEO_INCOMINGATTEMPT]
    [3]
    @SIP/Transport.c:1218 type=1 (00000000/0)
    [SIP/2.0 180 Ringing
    Via: SIP/2.0/UDP uen0.0:5061;branch=z9hG4bK-2c8df72b5983
    To: <sip:[email protected]>;tag=1802682038
    From: <sip:[email protected]:5061>;tag=1c9406
    Call-ID: s200278131c2a636f
    CSeq: 21739 INVITE
    Contact: <sip:[email protected]>;isfocus
    User-Agent: Viceroy 1.2
    Content-Length: 0
    @SIP/Transport.c:1218 type=1 (00000000/0)
    [SIP/2.0 100 Trying
    Via: SIP/2.0/UDP uen0.0:5061;branch=z9hG4bK-2c8df72b5983
    To: <sip:[email protected]>
    From: <sip:[email protected]:5061>;tag=1c9406
    Call-ID: s200278131c2a636f
    CSeq: 21739 INVITE
    User-Agent: Viceroy 1.2
    Content-Length: 0
    @SIP/Transport.c:1218 type=1 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP uen0.1:5061;received=uen0.0
    To: <sip:m.0>;tag=1532390844
    From: <sip:uen0.1:5061>;tag=258066396
    Call-ID: 11823012313477-ping-uen0.1
    CSeq: 10171 OPTIONS
    Contact: <sip:[email protected]>;isfocus
    Allow: INVITE, ACK, OPTIONS, BYE, CANCEL, MESSAGE, REFER, SUBSCRIBE, NOTIFY, INFO
    Allow-Events: conference, refer
    Accept: application/sdp, message/sipfrag, application/conference-info+xml
    User-Agent: Viceroy 1.2
    Content-Length: 0
    Video Conference User Report:
    Binary Images Description for "iChat":
    0x1000 - 0x17dfff com.apple.iChat 3.1.8 (445) /Applications/iChat.app/Contents/MacOS/iChat
    0x67e000 - 0x67efff com.apple.osax.digihub 1.0 /System/Library/ScriptingAdditions/Digital Hub Scripting.osax/Contents/MacOS/Digital Hub Scripting
    0x6bc000 - 0x6e8fff com.apple.osax.standardadditions 1.10.7 (???) /System/Library/ScriptingAdditions/StandardAdditions.osax/Contents/MacOS/Standa rdAdditions
    0x15b64000 - 0x15b6dfff com.apple.IOFWDVComponents 1.9.0 /System/Library/Components/IOFWDVComponents.component/Contents/MacOS/IOFWDVComp onents
    0x15b82000 - 0x15b87fff com.apple.audio.AppleHDAHALPlugIn 1.2.9 (1.2.9a4) /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x15bac000 - 0x15be8fff com.apple.QuickTimeFireWireDV.component 7.1.6 /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0x15bf4000 - 0x15c24fff com.apple.QuickTimeIIDCDigitizer 7.1.6 /System/Library/QuickTime/QuickTimeIIDCDigitizer.component/Contents/MacOS/Quick TimeIIDCDigitizer
    0x15c2e000 - 0x15c6afff com.apple.QuickTimeUSBVDCDigitizer 1.7.5 /System/Library/QuickTime/QuickTimeUSBVDCDigitizer.component/Contents/MacOS/Qui ckTimeUSBVDCDigitizer
    0x15c8e000 - 0x15de7fff com.apple.opengl 1.4.16 /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x15e13000 - 0x15e6cfff com.apple.driver.AppleIntelGMA950GLDriver 1.4.52 (4.5.2) /System/Library/Extensions/AppleIntelGMA950GLDriver.bundle/Contents/MacOS/Apple IntelGMA950GLDriver
    0x15e73000 - 0x15e8ffff com.apple.opengl 1.4.16 /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLDriver.bundl e/GLDriver
    0x15e96000 - 0x15ebafff com.apple.opengl 1.4.16 /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloa t.bundle/GLRendererFloat
    0x161b4000 - 0x161b7fff com.apple.audio.AudioIPCPlugIn 1.0.2 /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x161d3000 - 0x161fdfff com.apple.audio.SoundManager.Components 3.9.2 /System/Library/Components/SoundManagerComponents.component/Contents/MacOS/Soun dManagerComponents
    0x167e4000 - 0x167e4fff com.apple.SpotLightCM 1.0 (121.36) /System/Library/Contextual Menu Items/SpotlightCM.plugin/Contents/MacOS/SpotlightCM
    0x17319000 - 0x1731bfff com.apple.AutomatorCMM 1.0.1 (87) /System/Library/Contextual Menu Items/AutomatorCMM.plugin/Contents/MacOS/AutomatorCMM
    0x1733f000 - 0x17342fff com.apple.iokit.IOQTComponents 1.4 /System/Library/Components/IOQTComponents.component/Contents/MacOS/IOQTComponen ts
    0x17558000 - 0x17571fff com.apple.AppleIntermediateCodec 1.1 (141) /Library/QuickTime/AppleIntermediateCodec.component/Contents/MacOS/AppleInterme diateCodec
    0x17576000 - 0x1758ffff com.apple.applepixletvideo 1.2.9 (1.2d9) /System/Library/QuickTime/ApplePixletVideo.component/Contents/MacOS/ApplePixlet Video
    0x176cd000 - 0x176d8fff com.apple.airport.diskmenu 1.1 (110.18) /System/Library/Contextual Menu Items/AirPort Disk Menu.plugin/Contents/MacOS/AirPort Disk Menu
    0x176dd000 - 0x176e1fff com.apple.FolderActionsMenu 1.3.1 /System/Library/Contextual Menu Items/FolderActionsMenu.plugin/Contents/MacOS/FolderActionsMenu
    0x70000000 - 0x700fbfff com.apple.audio.units.Components 1.4.5 /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
    0x8fe00000 - 0x8fe4afff dyld /usr/lib/dyld
    0x90000000 - 0x90170fff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x901c0000 - 0x901c2fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x901c4000 - 0x90201fff com.apple.CoreText 1.1.2 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90228000 - 0x902fefff com.apple.ApplicationServices.ATS 2.0.6 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x9031e000 - 0x90773fff com.apple.CoreGraphics 1.258.75 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x9080a000 - 0x908d2fff com.apple.CoreFoundation 6.4.7 (368.28) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x90910000 - 0x90910fff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x90912000 - 0x90a05fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x90a55000 - 0x90ad4fff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90afd000 - 0x90b61fff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x90bd0000 - 0x90bd7fff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x90bdc000 - 0x90c4ffff com.apple.framework.IOKit 1.4.6 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90c64000 - 0x90c76fff libauto.dylib /usr/lib/libauto.dylib
    0x90c7c000 - 0x90f22fff com.apple.CoreServices.CarbonCore 682.23 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90f65000 - 0x90fcdfff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x91006000 - 0x91044fff com.apple.CFNetwork 129.20 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x91057000 - 0x91067fff com.apple.WebServices 1.1.3 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x91072000 - 0x910f1fff com.apple.SearchKit 1.0.5 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x9112b000 - 0x91149fff com.apple.Metadata 10.4.4 (121.36) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x91155000 - 0x91163fff libz.1.dylib /usr/lib/libz.1.dylib
    0x91166000 - 0x91305fff com.apple.security 4.5.2 (29774) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x91403000 - 0x9140bfff com.apple.DiskArbitration 2.1.1 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x91412000 - 0x91419fff libbsm.dylib /usr/lib/libbsm.dylib
    0x9141d000 - 0x91443fff com.apple.SystemConfiguration 1.8.6 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91455000 - 0x914cbfff com.apple.audio.CoreAudio 3.0.4 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x9151c000 - 0x9151cfff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x9151e000 - 0x9154afff com.apple.AE 314 (313) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x9155d000 - 0x91631fff com.apple.ColorSync 4.4.9 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x9166c000 - 0x916dffff com.apple.print.framework.PrintCore 4.6 (177.13) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9170d000 - 0x917b6fff com.apple.QD 3.10.24 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x917dc000 - 0x91827fff com.apple.HIServices 1.5.2 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x91846000 - 0x9185cfff com.apple.LangAnalysis 1.6.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x91868000 - 0x91883fff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x9188e000 - 0x918cbfff com.apple.LaunchServices 182 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x918df000 - 0x918ebfff com.apple.speech.synthesis.framework 3.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x918f2000 - 0x91931fff com.apple.ImageIO.framework 1.5.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x91944000 - 0x919f6fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91a3c000 - 0x91a52fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x91a57000 - 0x91a75fff com.apple.ImageIO.framework 1.5.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91a7a000 - 0x91ad9fff com.apple.ImageIO.framework 1.5.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91aeb000 - 0x91aeffff com.apple.ImageIO.framework 1.5.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91af1000 - 0x91b75fff com.apple.ImageIO.framework 1.5.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91b79000 - 0x91bb6fff com.apple.ImageIO.framework 1.5.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91bbc000 - 0x91bd6fff com.apple.ImageIO.framework 1.5.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91bdb000 - 0x91bddfff com.apple.ImageIO.framework 1.5.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91bdf000 - 0x91cbdfff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x91cda000 - 0x91cdafff com.apple.Accelerate 1.3.1 (Accelerate 1.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91cdc000 - 0x91d6afff com.apple.vImage 2.5 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91d71000 - 0x91d71fff com.apple.Accelerate.vecLib 3.3.1 (vecLib 3.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91d73000 - 0x91dccfff com.apple.Accelerate.vecLib 3.3.1 (vecLib 3.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x91dd5000 - 0x91df9fff com.apple.Accelerate.vecLib 3.3.1 (vecLib 3.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x91e01000 - 0x9220afff com.apple.Accelerate.vecLib 3.3.1 (vecLib 3.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x92244000 - 0x925f8fff com.apple.Accelerate.vecLib 3.3.1 (vecLib 3.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x92625000 - 0x92712fff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x92714000 - 0x92791fff com.apple.DesktopServices 1.3.6 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x927d2000 - 0x92a02fff com.apple.Foundation 6.4.8 (567.29) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92b0e000 - 0x92b18fff com.apple.framework.AppleTalk 1.2.0 (???) /System/Library/Frameworks/AppleTalk.framework/Versions/A/AppleTalk
    0x92b1c000 - 0x92b33fff com.apple.opengl 1.4.16 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92b3e000 - 0x92b96fff com.apple.opengl 1.4.16 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92baa000 - 0x92baafff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92bac000 - 0x92bbcfff com.apple.ImageCapture 3.0.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92bcb000 - 0x92bd3fff com.apple.speech.recognition.framework 3.6 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x92bd9000 - 0x92bdffff com.apple.securityhi 2.0.1 (24742) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x92be5000 - 0x92c76fff com.apple.ink.framework 101.2.1 (71) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x92c8a000 - 0x92c8efff com.apple.help 1.0.3 (32.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x92c91000 - 0x92caffff com.apple.openscripting 1.2.5 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x92cc1000 - 0x92cc7fff com.apple.print.framework.Print 5.2 (192.4) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x92ccd000 - 0x92d30fff com.apple.htmlrendering 66.1 (1.1.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x92d57000 - 0x92d98fff com.apple.NavigationServices 3.4.4 (3.4.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x92dbf000 - 0x92dcdfff com.apple.audio.SoundManager 3.9.1 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x92dd4000 - 0x92dd9fff com.apple.CommonPanels 1.2.3 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x92dde000 - 0x930d3fff com.apple.HIToolbox 1.4.9 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x931d9000 - 0x931e4fff com.apple.opengl 1.4.16 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x931e9000 - 0x93204fff com.apple.DirectoryService.Framework 3.3 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x93254000 - 0x93254fff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x93256000 - 0x9390cfff com.apple.AppKit 6.4.8 (824.42) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x93c8d000 - 0x93d08fff com.apple.CoreData 91 (92.1) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x93d41000 - 0x93dfbfff com.apple.audio.toolbox.AudioToolbox 1.4.5 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x93e3e000 - 0x93e3efff com.apple.audio.units.AudioUnit 1.4.3 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x93e40000 - 0x94001fff com.apple.QuartzCore 1.4.12 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x94047000 - 0x94088fff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x94090000 - 0x940cafff com.apple.opengl 1.4.16 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x940cf000 - 0x940e5fff com.apple.CoreVideo 1.4 /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x9412b000 - 0x94173fff com.apple.bom 8.5 (86.3) /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x9417d000 - 0x941bbfff com.apple.vmutils 4.0.2 (93.1) /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x941ff000 - 0x94210fff com.apple.securityfoundation 2.2.1 (28150) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x9421e000 - 0x9425cfff com.apple.securityinterface 2.2.1 (27695) /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x94278000 - 0x94287fff com.apple.CoreGraphics 1.258.75 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x9428e000 - 0x94299fff com.apple.CoreGraphics 1.258.75 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x942e5000 - 0x942fffff com.apple.CoreGraphics 1.258.75 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x94305000 - 0x94604fff com.apple.QuickTime 7.1.6 /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x94786000 - 0x948ccfff com.apple.AddressBook.framework 4.0.4 (485.1) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x94958000 - 0x94967fff com.apple.DSObjCWrappers.Framework 1.1 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x9496e000 - 0x94997fff com.apple.LDAPFramework 1.4.2 (69.1.1) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x9499d000 - 0x949acfff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
    0x949b0000 - 0x949d5fff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x949e1000 - 0x949fefff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x94a05000 - 0x94a6bfff com.apple.Bluetooth 1.7.14 (1.7.14f14) /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x94baa000 - 0x94c82fff edu.mit.Kerberos 5.5.24 /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x94d2a000 - 0x94dbcfff com.apple.WebKit 419 /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x94e16000 - 0x94e98fff com.apple.JavaScriptCore 418.3 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/JavaScriptCor e.framework/Versions/A/JavaScriptCore
    0x94ed1000 - 0x951b0fff com.apple.WebCore 418.21 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x9532f000 - 0x95352fff libxslt.1.dylib /usr/lib/libxslt.1.dylib
    0x955c8000 - 0x955ccfff com.apple.URLMount 2.1.7 /System/Library/PrivateFrameworks/URLMount.framework/Versions/A/URLMount
    0x95ac1000 - 0x95ac2fff libCyrillicConverter.dylib /System/Library/CoreServices/Encodings/libCyrillicConverter.dylib
    0x95ac4000 - 0x95ac5fff libGreekConverter.dylib /System/Library/CoreServices/Encodings/libGreekConverter.dylib
    0x95ac9000 - 0x95adffff libJapaneseConverter.dylib /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
    0x95ae1000 - 0x95b02fff libKoreanConverter.dylib /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
    0x95b0f000 - 0x95b1dfff libSimplifiedChineseConverter.dylib /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0x95b22000 - 0x95b23fff libThaiConverter.dylib /System/Library/CoreServices/Encodings/libThaiConverter.dylib
    0x95b25000 - 0x95b37fff libTraditionalChineseConverter.dylib /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    0x964da000 - 0x964dafff com.apple.vecLib 3.3.1 (vecLib 3.3.1) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x969c1000 - 0x969e3fff com.apple.speech.LatentSemanticMappingFramework 2.5 /System/Library/PrivateFrameworks/LatentSemanticMapping.framework/Versions/A/La tentSemanticMapping
    0x96a54000 - 0x96b2bfff com.apple.opengl 1.4.16 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x96b46000 - 0x96b47fff com.apple.opengl 1.4.16 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLSystem.dy lib
    0x96b49000 - 0x96b4efff com.apple.agl 2.5.9 (AGL-2.5.9) /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x96ca5000 - 0x96ca5fff com.apple.MonitorPanelFramework 1.1.1 /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x96e5f000 - 0x96e73fff com.apple.AppleShareClient 1.5.2 /System/Library/Frameworks/AppleShareClient.framework/Versions/A/AppleShareClie nt
    0x96e7c000 - 0x96ebbfff com.apple.AppleShareClientCore 1.5.2 /System/Library/Frameworks/AppleShareClientCore.framework/Versions/A/AppleShare ClientCore
    0x97407000 - 0x974f0fff com.apple.viceroy.framework 278.3.10 /System/Library/PrivateFrameworks/VideoConference.framework/Versions/A/VideoCon ference
    0x97c34000 - 0x97c36fff com.apple.DisplayServicesFW 1.8.2 /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x97e63000 - 0x98b38fff com.apple.QuickTimeComponents.component 7.1.6 /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x98d84000 - 0x98d86fff com.apple.QuickTimeH264.component 7.1.6 /System/Library/QuickTime/QuickTimeH264.component/Contents/MacOS/QuickTimeH264
    0x98d88000 - 0x98f30fff com.apple.QuickTimeH264.component 7.1.6 /System/Library/QuickTime/QuickTimeH264.component/Contents/Resources/QuickTimeH 264.scalar
    0x98fa0000 - 0x99063fff com.apple.QuickTimeMPEG4.component 7.1.6 /System/Library/QuickTime/QuickTimeMPEG4.component/Contents/MacOS/QuickTimeMPEG 4
    0x994fa000 - 0x99505fff com.apple.IMFramework 3.1.4 (429) /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
    0x9950f000 - 0x9967bfff com.apple.MessageFramework 2.1.1 (752.3) /System/Library/Frameworks/Message.framework/Versions/B/Message

  • Audio/Video Chat not working

    Okay, this is the question to end all questions. The one that stumps everyone, but I would really like an answer.
    Okay, so here is the problem. On iChat, I am unable to do Audio and video chats. Whether it be from a .Mac account or from an AIM account, it doesn't work.
    Here is what I have done to narrow down the possibilities a lot. I am running the newest iChat.
    1. I have tried without a router (Even though it is an Apple Router)
    2. I have tried without software firewalls in addition to router.
    3. I have done hardwired and WiFi.
    4. I recently noticed this when I switched ISPs. It says insufficient bandwidth despite the fact that my new ISP is 2x faster.
    5. I have tried multiple machines and cameras.
    6. Skype video and audio chat work fine.
    7. I have changed the ports so I know that the ports aren't being blocked.
    8. I have contacted my ISP and they said that iChat should work fine.
    9. I have deleted the .plist file so that I can restore to factory defaults.
    10. I have created guest account to use iChat to lower the chance of conflicting software.
    11. I have set Quicktime's streaming limit to "no limit" or what ever was the highest.
    I probably have tried a million other things, but under the above circumstances, it still doesn't work.
    Here is the report I get when trying to connect on a MacBook over WiFI. I can also get the PowerMac G5 one if necessary.
    Date/Time: 2007-08-21 14:50:59.828 -0700
    OS Version: 10.4.9 (Build 8P2137)
    Report Version: 4
    iChat Connection Log:
    AVChat started with ID 2156401904.
    [email protected]: State change from AVChatNoState to AVChatStateWaiting.
    0x15d292a0: State change from AVChatNoState to AVChatStateInvited.
    0x15d292a0: State change from AVChatStateInvited to AVChatStateConnecting.
    [email protected]: State change from AVChatStateWaiting to AVChatStateConnecting.
    0x15d292a0: State change from AVChatStateConnecting to AVChatStateEnded.
    Chat ended with error -22
    [email protected]: State change from AVChatStateConnecting to AVChatStateEnded.
    Chat ended with error -22
    Video Conference Error Report:
    @SIP/Transport.c:121 type=4 (00000000/0)
    [BYE sip:[email protected]:5061 SIP/2.0
    Via: SIP/2.0/UDP u0exte.0;branch=z9hG4bK1e2cf615640b3b39
    Max-Forwards: 70
    To: "[email protected]" <sip:[email protected]:5061>;tag=913373313
    From: "u0" <sip:[email protected]>;tag=998616497
    Call-ID: 910cc3d6-5030-11dc-90d2-809940ac13c5@lip
    CSeq: 2 BYE
    User-Agent: Viceroy 1.2
    Content-Length: 0
    @SIP/Transport.c:121 type=4 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP 10.0.1.194:5061;branch=z9hG4bK5a7310015d3a79a0;received=208.127.4.208
    To: "u0" <sip:[email protected]>;tag=998616497
    From: "[email protected]" <sip:[email protected]:5061>;tag=913373313
    Call-ID: 910cc3d6-5030-11dc-90d2-809940ac13c5@lip
    CSeq: 3 NOTIFY
    User-Agent: Viceroy 1.2
    Content-Length: 0
    @:0 type=4 (00000000/0)
    [VCBANDWIDTH_DETECTIONFAILURE]
    [20]
    @SIP/Transport.c:121 type=4 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP 10.0.1.194:5061;branch=z9hG4bK5494ebe44e932dc8;received=208.127.4.208
    To: "u0" <sip:[email protected]>;tag=998616497
    From: "[email protected]" <sip:[email protected]:5061>;tag=913373313
    Call-ID: 910cc3d6-5030-11dc-90d2-809940ac13c5@lip
    CSeq: 2 NOTIFY
    User-Agent: Viceroy 1.2
    Content-Length: 0
    @SIP/Transport.c:121 type=4 (00000000/0)
    [SUBSCRIBE sip:[email protected]:5061 SIP/2.0
    Via: SIP/2.0/UDP u0exte.0;branch=z9hG4bK4afacf2129fb514b
    Max-Forwards: 70
    To: "[email protected]" <sip:[email protected]:5061>;tag=913373313
    From: "u0" <sip:[email protected]>;tag=998616497
    Call-ID: 910cc3d6-5030-11dc-90d2-809940ac13c5@lip
    CSeq: 1 SUBSCRIBE
    Contact: <sip:[email protected]>
    Event: conference
    Expires: 3600
    User-Agent: Viceroy 1.2
    Content-Length: 0
    @SIP/Transport.c:121 type=4 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP 10.0.1.194:5061;branch=z9hG4bK2cbfec0a5bd0e39c;received=208.127.4.208
    To: "u0" <sip:[email protected]>;tag=998616497
    From: "[email protected]" <sip:[email protected]:5061>;tag=913373313
    Call-ID: 910cc3d6-5030-11dc-90d2-809940ac13c5@lip
    CSeq: 1 INVITE
    Contact: <sip:[email protected]>
    User-Agent: Viceroy 1.2
    Content-Type: application/sdp
    Content-Length: 426
    [v=0
    o=bradleymuro 0 0 IN IP4 u0exte.0
    [email protected]
    c=IN IP4 u0exte.0
    b=AS:2147483647
    t=0 0
    a=hwi:1056:2:2160
    a=bandwidthDetection:YES
    a=iChatEncryption:NO
    m=audio 16386 RTP/AVP 12
    a=rtcp:16387
    a=rtpID:1882716275
    m=video 16384 RTP/AVP 126
    a=rtcp:16385
    a=rtpmap:126 X-H264
    a=RTCP:AUDIO 16387 VIDEO 16385
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480
    a=framerate:20
    a=rtpID:-1055247342
    @SIP/Transport.c:121 type=4 (00000000/0)
    [SIP/2.0 180 Ringing
    Via: SIP/2.0/UDP 10.0.1.194:5061;branch=z9hG4bK2cbfec0a5bd0e39c;received=208.127.4.208
    To: "u0" <sip:[email protected]>;tag=998616497
    From: "[email protected]" <sip:[email protected]:5061>;tag=913373313
    Call-ID: 910cc3d6-5030-11dc-90d2-809940ac13c5@lip
    CSeq: 1 INVITE
    Contact: <sip:[email protected]>
    User-Agent: Viceroy 1.2
    Content-Length: 0
    @SIP/Transport.c:121 type=4 (00000000/0)
    [SIP/2.0 100 Trying
    Via: SIP/2.0/UDP 10.0.1.194:5061;branch=z9hG4bK2cbfec0a5bd0e39c;received=208.127.4.208
    To: "u0" <sip:[email protected]>
    From: "[email protected]" <sip:[email protected]:5061>;tag=913373313
    Call-ID: 910cc3d6-5030-11dc-90d2-809940ac13c5@lip
    CSeq: 1 INVITE
    User-Agent: Viceroy 1.2
    Content-Length: 0
    Video Conference Support Report:
    @SIP/Transport.c:1218 type=1 (00000000/0)
    [SIP/2.0 481 Call Leg/Transaction Does Not Exist
    Via: SIP/2.0/UDP u0exte.0;branch=z9hG4bK1e2cf615640b3b39
    To: "[email protected]" <sip:[email protected]:5061>;tag=913373313
    From: "u0" <sip:[email protected]>;tag=998616497
    Call-ID: 910cc3d6-5030-11dc-90d2-809940ac13c5@lip
    CSeq: 2 BYE
    User-Agent: Viceroy 1.2
    Content-Length: 0
    @SIP/Transport.c:1218 type=1 (00000000/0)
    [NOTIFY sip:[email protected] SIP/2.0
    Via: SIP/2.0/UDP 10.0.1.194:5061;branch=z9hG4bK5a7310015d3a79a0
    Max-Forwards: 70
    To: "u0" <sip:[email protected]>;tag=998616497
    From: "[email protected]" <sip:[email protected]:5061>;tag=913373313
    Call-ID: 910cc3d6-5030-11dc-90d2-809940ac13c5@lip
    CSeq: 3 NOTIFY
    Contact: <sip:[email protected]:5061>;isfocus
    Event: conference
    Subscription-State: terminated;reason=noresource
    User-Agent: Viceroy 1.2
    Content-Length: 0
    @SIP/Transport.c:1218 type=1 (00000000/0)
    [NOTIFY sip:[email protected] SIP/2.0
    Via: SIP/2.0/UDP 10.0.1.194:5061;branch=z9hG4bK5494ebe44e932dc8
    Max-Forwards: 70
    To: "u0" <sip:[email protected]>;tag=998616497
    From: "[email protected]" <sip:[email protected]:5061>;tag=913373313
    Call-ID: 910cc3d6-5030-11dc-90d2-809940ac13c5@lip
    CSeq: 2 NOTIFY
    Contact: <sip:[email protected]:5061>;isfocus
    Event: conference
    Subscription-State: active;expires=3600
    User-Agent: Viceroy 1.2
    Content-Type: application/conference-info+xml
    Content-Length: 220
    <c-i v="0" st="f" en="sip:[email protected]:5061">
    c<h>i</h><m t="a"/><m t="v"/>
    c<h>o</h><m t="a"/><m t="v"/>
    </c-i>
    @SIP/Transport.c:1218 type=1 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP u0exte.0;branch=z9hG4bK4afacf2129fb514b
    To: "[email protected]" <sip:[email protected]:5061>;tag=913373313
    From: "u0" <sip:[email protected]>;tag=998616497
    Call-ID: 910cc3d6-5030-11dc-90d2-809940ac13c5@lip
    CSeq: 1 SUBSCRIBE
    Contact: <sip:[email protected]:5061>;isfocus
    Expires: 3600
    User-Agent: Viceroy 1.2
    Content-Length: 0
    @SIP/Transport.c:1218 type=1 (00000000/0)
    [ACK sip:[email protected] SIP/2.0
    Via: SIP/2.0/UDP 10.0.1.194:5061;branch=z9hG4bK6ab720341e388f7b
    Max-Forwards: 70
    To: "u0" <sip:[email protected]>;tag=998616497
    From: "[email protected]" <sip:[email protected]:5061>;tag=913373313
    Call-ID: 910cc3d6-5030-11dc-90d2-809940ac13c5@lip
    CSeq: 1 ACK
    User-Agent: Viceroy 1.2
    Content-Length: 0
    @SIP/Transport.c:1218 type=1 (00000000/0)
    [INVITE sip:[email protected] SIP/2.0
    Via: SIP/2.0/UDP 10.0.1.194:5061;branch=z9hG4bK2cbfec0a5bd0e39c
    Max-Forwards: 70
    To: "u0" <sip:[email protected]>
    From: "[email protected]" <sip:[email protected]:5061>;tag=913373313
    Call-ID: 910cc3d6-5030-11dc-90d2-809940ac13c5@lip
    CSeq: 1 INVITE
    Contact: <sip:[email protected]:5061>;isfocus
    User-Agent: Viceroy 1.2
    Content-Type: application/sdp
    Content-Length: 490
    v=0
    o=Debbie 0 0 IN IP4 m.0
    [email protected]
    c=IN IP4 m.0
    b=AS:2147483647
    t=0 0
    a=hwi:1028:2:2000
    a=bandwidthDetection:YES
    a=iChatEncryption:YES
    m=audio 0 RTP/AVP 12 3 0
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:-871711246
    m=video 0 RTP/AVP 126 34
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:20
    a=RTCP:AUDIO 0 VIDEO 0
    a=pogo
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480
    a=rtpID:650540419
    @:0 type=2 (00000000/48)
    [VCVIDEO_OUTGOINGATTEMPT]
    [4]
    Video Conference User Report:
    Binary Images Description for "iChat":
    0x1000 - 0x17dfff com.apple.iChat 3.1.8 (445) /Applications/iChat.app/Contents/MacOS/iChat
    0x14d89000 - 0x14d92fff com.apple.IOFWDVComponents 1.9.0 /System/Library/Components/IOFWDVComponents.component/Contents/MacOS/IOFWDVComp onents
    0x14f21000 - 0x14f5dfff com.apple.QuickTimeFireWireDV.component 7.1.5 /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0x14f69000 - 0x14f99fff com.apple.QuickTimeIIDCDigitizer 7.1.5 /System/Library/QuickTime/QuickTimeIIDCDigitizer.component/Contents/MacOS/Quick TimeIIDCDigitizer
    0x14fa3000 - 0x14fdffff com.apple.QuickTimeUSBVDCDigitizer 1.7.5 /System/Library/QuickTime/QuickTimeUSBVDCDigitizer.component/Contents/MacOS/Qui ckTimeUSBVDCDigitizer
    0x15003000 - 0x15008fff com.apple.audio.AppleHDAHALPlugIn 1.2.9 (1.2.9a4) /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x15017000 - 0x15170fff com.apple.opengl 1.4.16 /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x1519c000 - 0x151f5fff com.apple.driver.AppleIntelGMA950GLDriver 1.4.52 (4.5.2) /System/Library/Extensions/AppleIntelGMA950GLDriver.bundle/Contents/MacOS/Apple IntelGMA950GLDriver
    0x151fc000 - 0x15218fff com.apple.opengl 1.4.16 /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLDriver.bundl e/GLDriver
    0x1521f000 - 0x15243fff com.apple.opengl 1.4.16 /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloa t.bundle/GLRendererFloat
    0x15494000 - 0x15497fff com.apple.audio.AudioIPCPlugIn 1.0.2 /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x154b3000 - 0x154ddfff com.apple.audio.SoundManager.Components 3.9.2 /System/Library/Components/SoundManagerComponents.component/Contents/MacOS/Soun dManagerComponents
    0x15856000 - 0x15868fff com.apple.security.dotmacdl 1.1.1 (25435) /System/Library/Security/dotmacdl.bundle/Contents/MacOS/dotmacdl
    0x158bd000 - 0x158d4fff com.apple.security.dotmac_tp 1.1.1 (25085) /System/Library/Security/dotmactp.bundle/Contents/MacOS/dotmactp
    0x16630000 - 0x16633fff com.apple.iokit.IOQTComponents 1.4 /System/Library/Components/IOQTComponents.component/Contents/MacOS/IOQTComponen ts
    0x8fe00000 - 0x8fe4afff dyld /usr/lib/dyld
    0x90000000 - 0x90172fff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x901c2000 - 0x901c4fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x901c6000 - 0x90203fff com.apple.CoreText 1.1.2 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x9022a000 - 0x90300fff com.apple.ApplicationServices.ATS 2.0.6 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x90320000 - 0x90775fff com.apple.CoreGraphics 1.258.61 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x9080c000 - 0x908d4fff com.apple.CoreFoundation 6.4.7 (368.28) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x90912000 - 0x90912fff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x90914000 - 0x90a07fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x90a57000 - 0x90ad6fff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90aff000 - 0x90b63fff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x90bd2000 - 0x90bd9fff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x90bde000 - 0x90c51fff com.apple.framework.IOKit 1.4.6 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90c66000 - 0x90c78fff libauto.dylib /usr/lib/libauto.dylib
    0x90c7e000 - 0x90f24fff com.apple.CoreServices.CarbonCore 682.18 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90f67000 - 0x90fcffff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x91008000 - 0x91046fff com.apple.CFNetwork 129.20 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x91059000 - 0x91069fff com.apple.WebServices 1.1.3 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x91074000 - 0x910f3fff com.apple.SearchKit 1.0.5 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x9112d000 - 0x9114bfff com.apple.Metadata 10.4.4 (121.36) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x91157000 - 0x91165fff libz.1.dylib /usr/lib/libz.1.dylib
    0x91168000 - 0x91307fff com.apple.security 4.5.2 (29774) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x91405000 - 0x9140dfff com.apple.DiskArbitration 2.1.1 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x91414000 - 0x9143afff com.apple.SystemConfiguration 1.8.6 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x9144c000 - 0x91453fff libbsm.dylib /usr/lib/libbsm.dylib
    0x91457000 - 0x914cdfff com.apple.audio.CoreAudio 3.0.4 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x9151e000 - 0x9151efff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x91520000 - 0x9154cfff com.apple.AE 314 (313) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x9155f000 - 0x91633fff com.apple.ColorSync 4.4.9 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x9166e000 - 0x916e1fff com.apple.print.framework.PrintCore 4.6 (177.13) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9170f000 - 0x917b8fff com.apple.QD 3.10.24 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x917de000 - 0x91829fff com.apple.HIServices 1.5.2 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x91848000 - 0x9185efff com.apple.LangAnalysis 1.6.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x9186a000 - 0x91885fff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x91890000 - 0x918cdfff com.apple.LaunchServices 182 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x918e1000 - 0x918edfff com.apple.speech.synthesis.framework 3.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x918f4000 - 0x91933fff com.apple.ImageIO.framework 1.5.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x91946000 - 0x919f8fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91a3e000 - 0x91a54fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x91a59000 - 0x91a77fff com.apple.ImageIO.framework 1.5.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91a7c000 - 0x91adbfff com.apple.ImageIO.framework 1.5.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91aed000 - 0x91af1fff com.apple.ImageIO.framework 1.5.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91af3000 - 0x91b77fff com.apple.ImageIO.framework 1.5.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91b7b000 - 0x91bb8fff com.apple.ImageIO.framework 1.5.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91bbe000 - 0x91bd8fff com.apple.ImageIO.framework 1.5.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91bdd000 - 0x91bdffff com.apple.ImageIO.framework 1.5.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91be1000 - 0x91cbffff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x91cdc000 - 0x91cdcfff com.apple.Accelerate 1.3.1 (Accelerate 1.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91cde000 - 0x91d6cfff com.apple.vImage 2.5 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91d73000 - 0x91d73fff com.apple.Accelerate.vecLib 3.3.1 (vecLib 3.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91d75000 - 0x91dcefff com.apple.Accelerate.vecLib 3.3.1 (vecLib 3.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x91dd7000 - 0x91dfbfff com.apple.Accelerate.vecLib 3.3.1 (vecLib 3.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x91e03000 - 0x9220cfff com.apple.Accelerate.vecLib 3.3.1 (vecLib 3.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x92246000 - 0x925fafff com.apple.Accelerate.vecLib 3.3.1 (vecLib 3.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x92627000 - 0x92714fff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x92716000 - 0x92793fff com.apple.DesktopServices 1.3.6 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x927d4000 - 0x92a04fff com.apple.Foundation 6.4.8 (567.29) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92b1e000 - 0x92b35fff com.apple.opengl 1.4.16 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92b40000 - 0x92b98fff com.apple.opengl 1.4.16 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92bac000 - 0x92bacfff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92bae000 - 0x92bbefff com.apple.ImageCapture 3.0.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92bcd000 - 0x92bd5fff com.apple.speech.recognition.framework 3.6 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x92bdb000 - 0x92be1fff com.apple.securityhi 2.0.1 (24742) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x92be7000 - 0x92c78fff com.apple.ink.framework 101.2.1 (71) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x92c8c000 - 0x92c90fff com.apple.help 1.0.3 (32.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x92c93000 - 0x92cb1fff com.apple.openscripting 1.2.5 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x92cc3000 - 0x92cc9fff com.apple.print.framework.Print 5.2 (192.4) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x92ccf000 - 0x92d32fff com.apple.htmlrendering 66.1 (1.1.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x92d59000 - 0x92d9afff com.apple.NavigationServices 3.4.4 (3.4.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x92dc1000 - 0x92dcffff com.apple.audio.SoundManager 3.9.1 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x92dd6000 - 0x92ddbfff com.apple.CommonPanels 1.2.3 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x92de0000 - 0x930d5fff com.apple.HIToolbox 1.4.9 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x931db000 - 0x931e6fff com.apple.opengl 1.4.16 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x931eb000 - 0x93206fff com.apple.DirectoryService.Framework 3.2 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x93256000 - 0x93256fff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x93258000 - 0x9390efff com.apple.AppKit 6.4.8 (824.42) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x93c8f000 - 0x93d0afff com.apple.CoreData 91 (92.1) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x93d43000 - 0x93dfdfff com.apple.audio.toolbox.AudioToolbox 1.4.5 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x93e40000 - 0x93e40fff com.apple.audio.units.AudioUnit 1.4.2 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x93e42000 - 0x94003fff com.apple.QuartzCore 1.4.12 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x94049000 - 0x9408afff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x94092000 - 0x940ccfff com.apple.opengl 1.4.16 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x940d1000 - 0x940e2fff com.apple.CoreVideo 1.4 /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x94126000 - 0x9416efff com.apple.bom 8.5 (86.3) /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x94178000 - 0x941b6fff com.apple.vmutils 4.0.2 (93.1) /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x941fa000 - 0x9420bfff com.apple.securityfoundation 2.2.1 (28150) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x94219000 - 0x94257fff com.apple.securityinterface 2.2.1 (27695) /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x94273000 - 0x94282fff com.apple.CoreGraphics 1.258.61 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x94289000 - 0x94294fff com.apple.CoreGraphics 1.258.61 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x942e0000 - 0x942fafff com.apple.CoreGraphics 1.258.61 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x94300000 - 0x945befff com.apple.QuickTime 7.1.5 /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x94723000 - 0x94869fff com.apple.AddressBook.framework 4.0.4 (485.1) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x948f5000 - 0x94904fff com.apple.DSObjCWrappers.Framework 1.1 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x9490b000 - 0x94934fff com.apple.LDAPFramework 1.4.2 (69.1.1) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x9493a000 - 0x94949fff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
    0x9494d000 - 0x94972fff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x9497e000 - 0x9499bfff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x949a2000 - 0x94a08fff com.apple.Bluetooth 1.7.14 (1.7.14f14) /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x94cc7000 - 0x94d59fff com.apple.WebKit 419 /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x94db3000 - 0x94e35fff com.apple.JavaScriptCore 418.3 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/JavaScriptCor e.framework/Versions/A/JavaScriptCore
    0x94e6e000 - 0x9514dfff com.apple.WebCore 418.21 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x952cc000 - 0x952effff libxslt.1.dylib /usr/lib/libxslt.1.dylib
    0x96476000 - 0x96476fff com.apple.vecLib 3.3.1 (vecLib 3.3.1) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x9695d000 - 0x9697ffff com.apple.speech.LatentSemanticMappingFramework 2.5 /System/Library/PrivateFrameworks/LatentSemanticMapping.framework/Versions/A/La tentSemanticMapping
    0x969f0000 - 0x96ac7fff com.apple.opengl 1.4.16 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x96ae2000 - 0x96ae3fff com.apple.opengl 1.4.16 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLSystem.dy lib
    0x96ae5000 - 0x96aeafff com.apple.agl 2.5.9 (AGL-2.5.9) /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x96c41000 - 0x96c41fff com.apple.MonitorPanelFramework 1.1.1 /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x973a2000 - 0x9748bfff com.apple.viceroy.framework 278.2 /System/Library/PrivateFrameworks/VideoConference.framework/Versions/A/VideoCon ference
    0x97bcf000 - 0x97bd1fff com.apple.DisplayServicesFW 1.8.2 /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x97dfe000 - 0x98accfff com.apple.QuickTimeComponents.component 7.1.5 /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x9948f000 - 0x9949afff com.apple.IMFramework 3.1.4 (429) /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
    0x994a4000 - 0x99610fff com.apple.MessageFramework 2.1.1 (752.3) /System/Library/Frameworks/Message.framework/Versions/B/Message
    If anyone has any suggestions, I would greatly appreciate it as I have been working on this for a long time.
    Or, if anyone knows of another chat program that can do video chat with iChat for the Mac, as Adium will not do it.
    Message was edited by: Mitchell Friedlaender

    Hi stevesol,
    It is not so much a problem with iChat as a problem with the vast options there are in Networking.
    In your case your Audio connection points to the fact that the ports needed for iChat are open. Video and Audio chats use the same ports.
    He may have a good connection speed but the the other people on his Network at his end will divide that up into Bandwidth.
    Think of it like a Highway with three lanes. When it is empty you can go as fast as you want. When there are more people it all slows down, sometimes to a crawl.
    Audio chats will work at Dial-up speeds. (upto about 50kbps)
    Video chats need 100kbps minimum.
    Now in some Universities/Colleges in the States as Students effectively pay to go, they get regarded as customers and if the Internet access is part of the service then the IT dept sometimes allocates an separate IP address giving the student all the bandwidth he wants.
    There can be issues with the number or routers on a large campus and how they keep all the subnets separate. This is normally done using NAT (Network Address Translation)
    This makes sure data for one computer is passed through each device correctly.
    Now the router and modem manufacturers don't all do NAT the same way so sometimes you get devices that "don't seem to Like each other"
    Using UPnP (Universal Plug and Play) can help get around this.
    If your son is in a shared room with a router for a room-mate then suing this may help.
    If you can use UPnP then that may help.
    I would guess this is something that is effecting your wife's contact.
    NAT needs ports to be opened in your router.
    Doing it with Port Forwarding or DMZ opens the ports to just one IP (Computer) on your home network which might also explain why your wife can not Chat if she is on the same LAN/network you are.
    Apple have decided that iChat is an VoIP application.
    VoIP has international Standards about how connections are made and one which ports.
    IT uses a internet Protocol called SIP (Session Initiation Protocol) that uses set ports (5060-5063). It uses one of these to make the call and uses the others as fall backs.
    Now bigger firms and campuses can be using VoIP for their phone service.
    Because some ISPs are or were telcom companies these sometime block the SIP ports to "make" people pay extra for the service (you can call anywhere in the world within the cost of your internet service).
    They will normally unblock this if you day that have started to block an application you were using.
    As you can see the problems can begin to overlap and cause issues that can be difficult to solve with a Once Only Fix.
    Can you tell us if you and your wife are on the same home network ?
    If so how many routers and modems do you have ?
    What makes and models are they ?
    What have you done so far to set them up for multiple computer to use the iChat ports ? (or otherwise)
    Of course this is all before we get into Universities doing things at their end for "security" or limiting Bandwidth to students to protect their network from potential outages
    11:49 AM Thursday; August 23, 2007

  • One-way video chat to 10.2.8 from Tiger G4?

    Ok, 1000 pardons if this has been answered somewhere...
    I am trying to video chat (one way) from one computer, an ibook G4 with 10.4.2, ichat 3.0.1, to another, a powerbook G3 400 mhz with both 10.2.8 and 10.3, both with ichat AV 2.1 ... We have been able to audio chat, send files, etc., without problem.
    My question: Is it also impossible just to RECEIVE video on a "sub-standard" computer? We didn't hook a camera up to the G3, because ichat says it is too slow to video conference.
    When I invite my wife to a one-way video conference, it simply says to her, "your computer is unable to video-conference." It says this no matter whether it is booted in 10.2.8 or 10.3.
    I haven't been able to find anything specifically addressing one-way video between ichat 3.0 and 2.1, or whether at least that is possible with slower computers. I haven't read anything saying that this is specifically NOT possible. I have read that there are (apparently) many problems in general between 2.1 and 3.0, but any specific info on how I can accomplish this would be helpful.
    Cheers,
    bruce

    Hi Bruce,
    The link http://docs.info.apple.com/article.html?artnum=301050 says any G3 can Audio chat 1-1 not Vifeo.
    A G3/600 is needed to video.
    This http://www.ecamm.com/mac/ichatusbcam/ is norammly needed for the use of USB cams or an iSight on sub G3/600 machines to Video (as low as 350Mghz)
    I have no information if it helps with one way chats with or without a camera and Mic. However as it comes with a 7 day trial it might be worth giving it a go.
    Ralph

Maybe you are looking for