Video transmission with multithreading. I am having a problem?

I am doing an application for sending video streams to multiple clients at the same time. So am using multithreading. I have the following codes to do the transmission. When I am using it with one thread only it is working fine. But when I use it with more threads for multiple transmissions I am have an error saying �Unable to realize com.sun.media.ProcessEngine�. Can anyone help me plz.
import java.awt.*;
import javax.media.*;
import javax.media.protocol.*;
import javax.media.protocol.DataSource;
import javax.media.format.*;
import javax.media.control.TrackControl;
import javax.media.control.QualityControl;
import java.io.*;
import java.lang.Thread;
public class VideoTransmitThread extends Thread{
// Input MediaLocator
// Can be a file or http or capture source
private MediaLocator locator;
private String ipAddress;
private String port;
private Processor processor = null;
private DataSink rtptransmitter = null;
private DataSource dataOutput = null;
public VideoTransmitThread(MediaLocator locator,
               String ipAddress,
               String port) {
     this.locator = locator;
     this.ipAddress = ipAddress;
     this.port = port;
* Starts the transmission. Returns null if transmission started ok.
* Otherwise it returns a string with the reason why the setup failed.
//run method for the thread
public void run( ) {
     String result;
     // Create a processor for the specified media locator
     // and program it to output JPEG/RTP
     result =createProcessor();
     if (result != null)
     System.out.println("error: "+result);
     // Create an RTP session to transmit the output of the
     // processor to the specified IP address and port no.
     result =createTransmitter();
     if (result != null) {
     processor.close();
     processor = null;
     //return result;
     System.out.println("error: "+result);
     System.exit(0);
     try {
     Thread.sleep(1000); // 100 msec
     } catch (InterruptedException e) {
     return;
     // Start the transmission
     processor.start();
* Stops the transmission if already started
public void stop1() {
     synchronized (this) {
     if (processor != null) {
          processor.stop();
          processor.close();
          processor = null;
          rtptransmitter.close();
          rtptransmitter = null;
private String createProcessor() {
     if (locator == null)
     return "Locator is null";
     DataSource ds;
     DataSource clone;
     try {
     ds = Manager.createDataSource(locator);
     } catch (Exception e) {
     return "Couldn't create DataSource";
     // Try to create a processor to handle the input media locator
     try {
     processor = Manager.createProcessor(ds);
     } catch (NoProcessorException npe) {
     return "Couldn't create processor";
     } catch (IOException ioe) {
     return "IOException creating processor";
     // Wait for it to configure
     boolean result = waitForState(processor, Processor.Configured);
     if (result == false)
     return "Couldn't configure processor";
     // Get the tracks from the processor
     TrackControl [] tracks = processor.getTrackControls();
     // Do we have atleast one track?
     if (tracks == null || tracks.length < 1)
     return "Couldn't find tracks in processor";
     boolean programmed = false;
     // Search through the tracks for a video track
     for (int i = 0; i < tracks.length; i++) {
     Format format = tracks.getFormat();
     if ( tracks[i].isEnabled() &&
          format instanceof VideoFormat &&
          !programmed) {
          // Found a video track. Try to program it to output JPEG/RTP
          // Make sure the sizes are multiple of 8's.
          Dimension size = ((VideoFormat)format).getSize();
          float frameRate = ((VideoFormat)format).getFrameRate();
          int w = (size.width % 8 == 0 ? size.width :
                    (int)(size.width / 8) * 8);
          int h = (size.height % 8 == 0 ? size.height :
                    (int)(size.height / 8) * 8);
          VideoFormat jpegFormat = new VideoFormat(VideoFormat.JPEG_RTP,
                                   new Dimension(w, h),
                                   Format.NOT_SPECIFIED,
                                   Format.byteArray,
                                   frameRate);
          tracks[i].setFormat(jpegFormat);
          System.err.println("Video transmitted as:");
          System.err.println(" " + jpegFormat);
          // Assume succesful
          programmed = true;
     } else
          tracks[i].setEnabled(false);
     if (!programmed)
     return "Couldn't find video track";
     // Set the output content descriptor to RAW_RTP
     ContentDescriptor cd = new ContentDescriptor(ContentDescriptor.RAW_RTP);
     processor.setContentDescriptor(cd);
     // Realize the processor. This will internally create a flow
     // graph and attempt to create an output datasource for JPEG/RTP
     // video frames.
     result = waitForState(processor, Controller.Realized);
     if (result == false)
     return "Couldn't realize processor";
     // Set the JPEG quality to .5.
     setJPEGQuality(processor, 0.5f);
     // Get the output data source of the processor
     dataOutput = processor.getDataOutput();
     return null;
// Creates an RTP transmit data sink. This is the easiest way to create
// an RTP transmitter. The other way is to use the RTPSessionManager API.
// Using an RTP session manager gives you more control if you wish to
// fine tune your transmission and set other parameters.
private String createTransmitter() {
     // Create a media locator for the RTP data sink.
     // For example:
     // rtp://129.130.131.132:42050/video
     String rtpURL = "rtp://" + ipAddress + ":" + port + "/video";
     MediaLocator outputLocator = new MediaLocator(rtpURL);
     // Create a data sink, open it and start transmission. It will wait
     // for the processor to start sending data. So we need to start the
     // output data source of the processor. We also need to start the
     // processor itself, which is done after this method returns.
     try {
     rtptransmitter = Manager.createDataSink(dataOutput, outputLocator);
     rtptransmitter.open();
     rtptransmitter.start();
     dataOutput.start();
     } catch (MediaException me) {
     return "Couldn't create RTP data sink";
     } catch (IOException ioe) {
     return "Couldn't create RTP data sink";
     return null;
* Setting the encoding quality to the specified value on the JPEG encoder.
* 0.5 is a good default.
void setJPEGQuality(Player p, float val) {
     Control cs[] = p.getControls();
     QualityControl qc = null;
     VideoFormat jpegFmt = new VideoFormat(VideoFormat.JPEG);
     // Loop through the controls to find the Quality control for
     // the JPEG encoder.
     for (int i = 0; i < cs.length; i++) {
     if (cs[i] instanceof QualityControl &&
          cs[i] instanceof Owned) {
          Object owner = ((Owned)cs[i]).getOwner();
          // Check to see if the owner is a Codec.
          // Then check for the output format.
          if (owner instanceof Codec) {
          Format fmts[] = ((Codec)owner).getSupportedOutputFormats(null);
          for (int j = 0; j < fmts.length; j++) {
               if (fmts[j].matches(jpegFmt)) {
               qc = (QualityControl)cs[i];
               qc.setQuality(val);
               System.err.println("- Setting quality to " +
                         val + " on " + qc);
               break;
          if (qc != null)
          break;
* Convenience methods to handle processor's state changes.
private Integer stateLock = new Integer(0);
private boolean failed = false;
Integer getStateLock() {
     return stateLock;
void setFailed() {
     failed = true;
private synchronized boolean waitForState(Processor p, int state) {
     p.addControllerListener(new StateListener());
     failed = false;
     // Call the required method on the processor
     if (state == Processor.Configured) {
     p.configure();
     } else if (state == Processor.Realized) {
     p.realize();
     // Wait until we get an event that confirms the
     // success of the method, or a failure event.
     // See StateListener inner class
     while (p.getState() < state && !failed) {
     synchronized (getStateLock()) {
          try {
          getStateLock().wait();
          } catch (InterruptedException ie) {
          return false;
     if (failed)
     return false;
     else
     return true;
* Inner Classes
class StateListener implements ControllerListener {
     public void controllerUpdate(ControllerEvent ce) {
     // If there was an error during configure or
     // realize, the processor will be closed
     if (ce instanceof ControllerClosedEvent)
          setFailed();
     // All controller events, send a notification
     // to the waiting thread in waitForState method.
     if (ce instanceof ControllerEvent) {
          synchronized (getStateLock()) {
          getStateLock().notifyAll();
* Sample Usage for VideoTransmitNew class
public static void main(String [] args) {
     // We need three parameters to do the transmission
     // For example,
     // java VideoTransmitNew file:/C:/media/test.mov 129.130.131.132 42050
     System.err.println("Start transmission");
     //Create a video transmit object with the specified params.
MediaLocator URL=new MediaLocator("file:///C:/media/test.mpg");
//Am using 3 different threads.
     new VideoTransmitThread(URL,"CSELAB12PC10","9876").start();
     new VideoTransmitThread(URL," CSELAB12PC11","9870").start();
     new VideoTransmitThread(URL," CSELAB12PC12","9690").start();
     //close all transmission before quiting.

Hm, that was my silver bullet. Other than doing an uninsall and then installing Presenter again, you may need to reach out to Adobe and see if they can identify what could be causing this.

Similar Messages

  • I used to use SpeedBit Video Downloader with Mozilla Firefox, but suddenly a problem happened, I can not download with it now at all as there is an code error appears in the bar of SpeedBit like "XML Parsing Error: unclosed token Location: chrome://browse

    I used to use SpeedBit Video Downloader with Mozilla Firefox, but suddenly a problem happened, I can not download with it now at all as there is an code error appears in the bar of SpeedBit like "XML Parsing Error: unclosed token Location: chrome://browser/content/browser.xul Line Number 1, column 8702:....................."
    I did evrey thing, but the same problem
    reinstall SpeedBit, reinstall Mozilla Firefox.
    So what can I do!
    == This happened ==
    Every time Firefox opened
    == 4 days ago

    look people, i may have a solution for this. This happened to me a few times before and resolved alone, but last time it happened was when i turned off my router and back on while my comp was running and appeared when i tried opening firefox after that. so wat i did was i shutdown the computer and the router and tried turning both on again, and it resolved.
    Therefore, Summary: Shutdown computer then turnoff router then turn both back on
    Hope this helps anyone.

  • Re: video transmission with JMF

    Dear Friends,
    A Good Day to all of you'll. I used the AVTransmit2 file to do a Multicasting simulation.
    I used an .avi video sample. The multicast works fine, but the only problem is that, the sound doesnt play when the video is being shown. What should i do to get the sound up and running ?
    Your points will be really helpful for me.
    Thank You.
    Regards
    Ganesan Periakarruppan
    Message was edited by:
    Ganesh4144

    You need to open 2 rtp sessions from the client side:
    One for the audiotrack.
    One for the videotrack.
    bye .

  • Having Memory problems on Macbook Pro Retina 13'

    Hello!
    So a month ago or so I bought a new Macbook Pro Retina 13'.
    I'm into video-editing and have been editing a lot of videos this summer and noticed that it took up a LOT of space on my hard disk. So, I deleted all the films I have on this computer and emptied the trash file. I also used Disk Inventory X to make sure everything was deleted.
    I'm going to be buying an extra hard disk where I'll put all my edited videos, but for now, I'm having slight problems. Even though I made sure every film/video was deleted on my Macbook, according to Utilities I still have 27GB of Films on my Macbook. (Link to print screen)
    Does anyone have any idea how to get rid of that?
    Thanks so much in advance,
    Jay!

    Try using OmniDiskSweeper 1.8 or GrandPerspective to search your drive for large files and where they are located. However, don't delete anything that is located outside of your Home folder as those are system files.

  • I have downloaded the new iTunes 10.7 on my computer with windows vista on it. Now every time I try to run a video it shuts off iTunes. Is anyone else having this problem?

    I have downloaded the new iTunes 10.7 on my computer with windows vista on it. Now every time I try to run a video it shuts off iTunes. Is anyone else having this problem? I have uninstalled and reinstalled the program twice. Is there a fix? Is it possible I am missing part of the program? 

    I'd start with the following user tip:
    iTunes for Windows 10.7.0.21: "iTunes has stopped working" error messages when playing videos, video podcasts, movies and TV shows

  • Hello. Having a problem with skype. i am online, all buttons work, however i can not make a video call the button simply doesnt work. Messages works. voice calls works. Please help.

    Hello. Having a problem with skype. i am online, all buttons work, however i can not make a video call the button simply doesnt work. Messages works. voice calls works. Please help.

    Sounds like you need to contact skype.

  • I'm having problems uploading video taken with my iPhone 4 to Photobucket.  FB will not accept the file extension which is ex. IMG_423.  They will play on my computer and will upload to Facebook.  Why is the phone taking video with this file instead of so

    I'm having problems uploading video taken with my iPhone 4 to Photobucket.  FB will not accept the file extension which is ex. IMG_423.  They will play on my computer and will upload to Facebook.  Why is the phone taking video with this file instead of something like .mov or mp4.  How can I change the extension after the fact and avoid it in the future?

    You said, "the 4 also has signal and wifi whereas the 5 has only wifi". By "signal", I'm assuing that you mean cellular signal. If so, that means your iPhone 4 is still active on your cellular number and your iPhone 5 is not. Contact your carrier to sort out which phone is active on your account.

  • My quicktime is very jerky with 1080p video but when I play the video file in FCPX its smooth. I recently upgraded to OS mavericks on iMac with 16gb of ram and should not be having this problem. Is it possible to reinstall older software?

    My quicktime is very jerky with 1080p video but when I play the video file in FCPX its smooth. I recently upgraded to OS mavericks on 2011 iMac with 16gb of ram and should not be having this problem. Is it possible to reinstall older software? I cant figure whats causing the jerky video so I'm assuming its the new OS. Any one have any suggestions?

    I have the same but not the same problem. When I play a sound or a video on a website (other than youtube)on safari,  a weird nois is comeing from the speakers, the sound has pops/clicks but if I play the same video/sound on mozilla it works fine.. If wnyone know what's the problem.. please let us know

  • I am having a problem with Adobe Presenter Video Express locking up my PC.  It requires a complete reboot to kill the program.  Anyone else?

    I recently installed Presenter 10 and the Presenter Video Express locks up my PC.  I can't even end with the task manager.  I must force my PC to shut down.  Anyone else having a problem with Video Express?

    Hm, that was my silver bullet. Other than doing an uninsall and then installing Presenter again, you may need to reach out to Adobe and see if they can identify what could be causing this.

  • Having lagging problems with YouTube videos, it simply takes so long for the red bar to completely load and the videos frequently pause and take too long to restart playing again.

    I have been having lagging problems with YouTube videos for a number of months now. It simply takes so long for the red bar to completely load and the videos frequently pause and take too long to restart playing again. Even with little 2 and 3 minute videos.
    I have a fast computer and my webpages load really, really fast. I have FireFox 4 browser and a Vista Home Premium 64-bit OS. So I don't have a slow computer or web browser. But these slow YouTube vids take way too long to load for some reason.
    Does anyone have any idea how I can speed up YouTube?

    Hi
    The forums are customer to customer in the first instance, Only the mods (BT) will ask for personal information through a email link. Would you mind posting your Hub stats & BT speed test results this will help all with diagnosis-
    To post the full stats from your router
    for home hub - 192.168.1.254
    Navigate to ADSL Settings or use the A-Z at the top right
    Click on More Details and then post the results.
    Run BT speed tester and post the results from http://speedtester.bt.com/
    If possible it would be best to connect to the BT master socket this will rule out any telephone/broadband extension wiring also consider the housing of the hub/router as anything electrical can cause problems as these are your responsibility, if these are found to be the case Openreach (engineer) will charge BT Broadband, which will be passed onto you, around £130.00.
    Noisy line! When making telephone calls, if so this is not good for your broadband, you can check-
    Quite line test dial 17070 option 2 and listen - should hear nothing best done with old type analogue phone digital (dect) will do but may have slight hiss If you hear noise- crackling pops etc, report it as a noisy line on your phone, don’t mention broadband, Bt Faults on 151.
    As for your FTTC its available in some areas between 40% & 80% of customers in enabled areas can receive it!
    Mortgage Advisor 2000-2008
    Green Energy Advisor 2008-2010
    Charity Health Care Provider Advisor 2010-
    I'm alright Jack....

  • I am having consistant problems w/ my mb pro freezing for 20-60 seconds while working in different programs and apps. i've upgraded my RAM to 8gigs and deleted over 60 gig of pics and videos to try to help, but nothing seems to work.

    I've now been having this problem for months. It just freezes up and either shows me the dumb color wheel or doesn't show me anything sometimes and i just cant do anything for about 20-60 seconds. i can't exposae or anything. Also while working on a power point presentation it froze 4 different times for good and i had to do a hard restart just to get it working again. i lost my work and had to keep starting over. it was so annoying. it seems most of the time it does it, it is while i'm in Excel, Outlook, or Powerpoint. so perhaps it has something to do with my microsoft office. but i have the newest version and all the updates and everything. and i believe its happened when doing other tasks too. So i just can't figure it out.
    A few Mac friends suggested i free up some space on my hard drive and upgrade my RAM. So i did. i put all my videos and photos on an external harddrive and deleted them all on my computer. i also upgraded to 8 gigs of RAM.
    And honestly i can't even tell a difference after doing both of these.
    HELP! PLEASE HELP! I'M ABOUT TO GO CRAZY. And having all the non Mac believers telling me it cause i have a Mac even drives me more nuts..
    Jason

    Any of this help?
    it froze a few times over the last hour and half while browsing the internet.
    and also while working in excel it all of the sudden shut down excel and said. "Excel has encountered and problem and needs to shut down, you may lose the work you were on." or something like that. THIS HAPPENS ALL THE TIME TOO. Excel, outlook and powerpoint frequently just shut down on me out of now where. I've bolded and underlined when this happened.
    1/8/12 11:50:56 AM
    Software Update[4573]
    PackageKit: *** Missing bundle identifier: /Library/Receipts/PPD_Installer_RI3292E3L.pkg
    1/8/12 11:51:22 AM
    com.apple.launchd[1]
    (com.apple.suhelperd[4575]) Exited with exit code: 2
    1/8/12 12:13:51 PM
    com.apple.launchd[1]
    (com.apple.netauth.sysagent[4608]) Exited with exit code: 255
    1/8/12 12:17:37 PM
    com.apple.launchd[1]
    (com.apple.netauth.sysagent[4616]) Exited with exit code: 255
    1/8/12 12:20:47 PM
    com.apple.backupd[4644]
    QUICKCHECK ONLY; FILESYSTEM CLEAN
    1/8/12 12:21:39 PM
    com.apple.launchd[1]
    (com.apple.netauth.sysagent[4645]) Exited with exit code: 255
    1/8/12 12:26:25 PM
    [0x0-0x26026].org.mozilla.firefox[263]
    colorbits: 24 alpha: 8 depth: 24 stencil: 0
    1/8/12 12:26:25 PM
    [0x0-0x26026].org.mozilla.firefox[263]
    *** depth: 24 (req: 24)
    1/8/12 12:27:54 PM
    [0x0-0x26026].org.mozilla.firefox[263]
    colorbits: 24 alpha: 8 depth: 24 stencil: 0
    1/8/12 12:27:54 PM
    [0x0-0x26026].org.mozilla.firefox[263]
    *** depth: 24 (req: 24)
    1/8/12 1:00:43 PM
    com.apple.launchd.peruser.501[112]
    ([0x0-0x1b01b].com.microsoft.Excel[210]) Exited: Killed
    1/8/12 1:03:51 PM
    [0x0-0x199199].com.microsoft.Excel[4763]
    Sun Jan  8 13:03:51 Jason-Streiffs-MacBook-Pro.local Microsoft Excel[4763] <Error>: CGBitmapContextCreate: invalid data bytes/row: should be at least 5760 for 8 integer bits/component, 3 components, kCGImageAlphaNoneSkipFirst.
    1/8/12 1:03:52 PM
    [0x0-0x199199].com.microsoft.Excel[4763]
    Sun Jan  8 13:03:52 Jason-Streiffs-MacBook-Pro.local Microsoft Excel[4763] <Error>: CGBitmapContextCreate: invalid data bytes/row: should be at least 5760 for 8 integer bits/component, 3 components, kCGImageAlphaNoneSkipFirst.

  • Video "Dropouts" with FCS and Mountain Lion

    I would like to see if anyone else is having this problem and maybe save some folks from the experience.
    I have two macs.
    #1- Imac, 2.93, core 2 duo, 4g ram, 24".
    #2-Macbook Pro, 17", 2.53, 4g
    4t g-raids
    Clean Install done on Imac of Mountain Lion.  Reloaded fcs.
    Did NOT touch macbook.  Still running Snow Leopard.
    Working on large video job...1080 60i, avchd, panny cam.
    Went to transfer footage using all usual settings.
    Video on imac looked like "old school" video drop outs.  As you can imagine, it was a long night to figure this out.
    Erased footage and hooked up my g-raids to the Macbook.  Looked fine.
    Took hard drives back to imac, tried transfer again.  Stuttering and drop outs continued.
    Back to Macbook with Snow Leopard, no problems.  My guy is editing job right now on Macbook.
    I am in the middle of a clean install of Snow Leopard on the imac.  I'm gonna have to send the "boys" out to get my $20 bucks back from Apple.
    Thought I'd post it in case someone sees same thing and thinks they are crazy.
    Mountain lion could not capture footage without drops.  Snow Leopard (my trusty os) did it all.
    Shocked I say, Apple....Shocked.  (Not really, been down this road before) Never believe what they say.  Don't upgrade unless forced by gunpoint.

    This is the FCP X forum - you should ask this question in the Final Cut Studio forum:
    https://discussions.apple.com/community/professional_applications/final_cut_stud io
    Andy

  • Connection Error when trying to Video Chat with a PC

    I recently purchase my first Mac, a 13 inch 2.0 GHz Macbook. I have been having problems with iChat. I couldn't even get it to work in the beginning. I am using my AIM account, I do not have a .Mac account. I called Applecare and they did not help me. Finally I changed the server settings port from 5190 to 443 and it let me connect. Before that it would just say "unexpectedly lost connection".
    So anyway, I have iChat version 3.1.8 and I am trying to video chat with friends on PCs. I have not been successful. I realize there are so many other discussions like this one and I feel like I have tried everything. If I invite someone to a video chat it says "declined invitation", even though they accept, and if they invite me it says "connection error". I have tried with friends on AIM 5.9 and 6.1.
    I have changed the Bandwidth settings to None. I have made the Quicktime streaming speed 1.5 Mbps T1/Intranet/Lan. I know there has been other advice about routers and allowing ports but I'm not really sure what all of that means. I think I've tried everything. Also, I connected with the appleutest on AIM and the video chat was successful. So it's obviously just with the PC users. I have been able to connect once or twice but then I'll try a little later and it won't work anymore. Sorry this is so long. I'd appreciate if anyone can help me. Thank you! Here is one of the error logs...
    Date/Time: 2007-08-27 21:57:20.565 -0700
    OS Version: 10.4.10 (Build 8R2232)
    Report Version: 4
    iChat Connection Log:
    AVChat started with ID 0.
    0x17442200: State change from AVChatNoState to AVChatStateWaiting.
    kramer120485: State change from AVChatNoState to AVChatStateInvited.
    0x17442200: State change from AVChatStateWaiting to AVChatStateConnecting.
    kramer120485: State change from AVChatStateInvited to AVChatStateConnecting.
    0x17442200: State change from AVChatStateConnecting to AVChatStateEnded.
    Chat ended with error -8
    kramer120485: State change from AVChatStateConnecting to AVChatStateEnded.
    Chat ended with error -8
    Video Conference Error Report:
    @:0 type=4 (00000000/36)
    [VCSIP_INVITEERROR]
    [19]
    @SIP/SIP.c:2448 type=4 (900A0015/36)
    [SIPConnectIPPort failed]
    @SIP/SIP.c:2448 type=4 (900A0015/36)
    [SIPConnectIPPort failed]
    @SIP/Transport.c:121 type=4 (00000000/0)
    [OPTIONS sip:192.168.1.2:5060 SIP/2.0
    From: sip:u0en0.1:5061;tag=2223130651
    To: sip:m.0:5061
    Call-Id: 118827703223417-ping-u0en0.1
    Cseq: 9631 OPTIONS
    User-Agent: COOL/4.6.8.5225 SIPxua/2.9.2.1008 (WinNT)
    Contact: sip:u0en0.1:5061
    Via: SIP/2.0/UDP u0en0.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)
    [BYE sip:[email protected]:5061 SIP/2.0
    Via: SIP/2.0/UDP m.0:5061;branch=z9hG4bK058ba8604b6c6d15
    Max-Forwards: 70
    To: <sip:[email protected]:5061>;tag=1c23876
    From: <sip:[email protected]:5061>;tag=438999169
    Call-ID: s500573ea63db8814
    CSeq: 1 BYE
    User-Agent: Viceroy 1.2
    Content-Length: 0
    @SIP/Transport.c:1218 type=1 (00000000/0)
    [INVITE sip:[email protected]:5061 SIP/2.0
    Via: SIP/2.0/UDP 192.168.1.2;branch=z9hG4bK50d713b133ef954b
    Max-Forwards: 70
    To: "u0" <sip:[email protected]:5061>
    From: "kramer120485" <sip:[email protected]>;tag=1376288434
    Call-ID: 247e40e4-5523-11dc-93ac-ec29f19d13c4@lip
    CSeq: 1 INVITE
    Contact: <sip:[email protected]>;isfocus
    User-Agent: Viceroy 1.2
    Content-Type: application/sdp
    Content-Length: 509
    v=0
    o=Stephanie 0 0 IN IP4 192.168.1.2
    s=kramer120485
    c=IN IP4 192.168.1.2
    b=AS:2147483647
    t=0 0
    a=hwi:1028:2:2000
    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:-352557824
    m=video 16384 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 16387 VIDEO 16385
    a=pogo
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480
    a=rtpID:1557177696
    @SIP/Transport.c:1218 type=1 (00000000/0)
    [INVITE sip:[email protected]:5061 SIP/2.0
    Via: SIP/2.0/UDP 192.168.1.2;branch=z9hG4bK50d713b133ef954b
    Max-Forwards: 70
    To: "u0" <sip:[email protected]:5061>
    From: "kramer120485" <sip:[email protected]>;tag=1376288434
    Call-ID: 247e40e4-5523-11dc-93ac-ec29f19d13c4@lip
    CSeq: 1 INVITE
    Contact: <sip:[email protected]>;isfocus
    User-Agent: Viceroy 1.2
    Content-Type: application/sdp
    Content-Length: 509
    v=0
    o=Stephanie 0 0 IN IP4 192.168.1.2
    s=kramer120485
    c=IN IP4 192.168.1.2
    b=AS:2147483647
    t=0 0
    a=hwi:1028:2:2000
    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:-352557824
    m=video 16384 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 16387 VIDEO 16385
    a=pogo
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480
    a=rtpID:1557177696
    @SIP/Transport.c:1218 type=1 (00000000/0)
    [INVITE sip:[email protected]:5061 SIP/2.0
    Via: SIP/2.0/UDP 192.168.1.2;branch=z9hG4bK50d713b133ef954b
    Max-Forwards: 70
    To: "u0" <sip:[email protected]:5061>
    From: "kramer120485" <sip:[email protected]>;tag=1376288434
    Call-ID: 247e40e4-5523-11dc-93ac-ec29f19d13c4@lip
    CSeq: 1 INVITE
    Contact: <sip:[email protected]>;isfocus
    User-Agent: Viceroy 1.2
    Content-Type: application/sdp
    Content-Length: 509
    v=0
    o=Stephanie 0 0 IN IP4 192.168.1.2
    s=kramer120485
    c=IN IP4 192.168.1.2
    b=AS:2147483647
    t=0 0
    a=hwi:1028:2:2000
    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:-352557824
    m=video 16384 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 16387 VIDEO 16385
    a=pogo
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480
    a=rtpID:1557177696
    @SIP/Transport.c:1218 type=1 (00000000/0)
    [BYE sip:[email protected]:5061 SIP/2.0
    Via: SIP/2.0/UDP m.0:5061;branch=z9hG4bK178c2dac53f4dc1e
    Max-Forwards: 70
    To: <sip:[email protected]:5061>;tag=1c23876
    From: <sip:[email protected]:5061>;tag=438999169
    Call-ID: s500573ea63db8814
    CSeq: 2 BYE
    User-Agent: Viceroy 1.2
    Content-Length: 0
    @SIP/Transport.c:1218 type=1 (00000000/0)
    [INVITE sip:[email protected]:5061 SIP/2.0
    Via: SIP/2.0/UDP m.0:5061;branch=z9hG4bK451ce4c26f245878
    Max-Forwards: 70
    To: "u0" <sip:[email protected]:5061>
    From: "kramer120485" <sip:[email protected]>;tag=268306451
    Call-ID: 234ce95a-5523-11dc-93ac-f48eff1b13c4@lip
    CSeq: 1 INVITE
    Contact: <sip:[email protected]:5061>;isfocus
    User-Agent: Viceroy 1.2
    Content-Type: application/sdp
    Content-Length: 513
    v=0
    o=Stephanie 0 0 IN IP4 m.0
    s=kramer120485
    c=IN IP4 m.0
    b=AS:2147483647
    t=0 0
    a=hwi:1028:2:2000
    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:-352557824
    m=video 16384 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 16387 VIDEO 16385
    a=pogo
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480
    a=rtpID:1557177696
    @SIP/Transport.c:1218 type=1 (00000000/0)
    [INVITE sip:[email protected]:5061 SIP/2.0
    Via: SIP/2.0/UDP m.0:5061;branch=z9hG4bK451ce4c26f245878
    Max-Forwards: 70
    To: "u0" <sip:[email protected]:5061>
    From: "kramer120485" <sip:[email protected]>;tag=268306451
    Call-ID: 234ce95a-5523-11dc-93ac-f48eff1b13c4@lip
    CSeq: 1 INVITE
    Contact: <sip:[email protected]:5061>;isfocus
    User-Agent: Viceroy 1.2
    Content-Type: application/sdp
    Content-Length: 513
    v=0
    o=Stephanie 0 0 IN IP4 m.0
    s=kramer120485
    c=IN IP4 m.0
    b=AS:2147483647
    t=0 0
    a=hwi:1028:2:2000
    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:-352557824
    m=video 16384 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 16387 VIDEO 16385
    a=pogo
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480
    a=rtpID:1557177696
    @SIP/Transport.c:1218 type=1 (00000000/0)
    [INVITE sip:[email protected]:5061 SIP/2.0
    Via: SIP/2.0/UDP m.0:5061;branch=z9hG4bK451ce4c26f245878
    Max-Forwards: 70
    To: "u0" <sip:[email protected]:5061>
    From: "kramer120485" <sip:[email protected]>;tag=268306451
    Call-ID: 234ce95a-5523-11dc-93ac-f48eff1b13c4@lip
    CSeq: 1 INVITE
    Contact: <sip:[email protected]:5061>;isfocus
    User-Agent: Viceroy 1.2
    Content-Type: application/sdp
    Content-Length: 513
    v=0
    o=Stephanie 0 0 IN IP4 m.0
    s=kramer120485
    c=IN IP4 m.0
    b=AS:2147483647
    t=0 0
    a=hwi:1028:2:2000
    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:-352557824
    m=video 16384 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 16387 VIDEO 16385
    a=pogo
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480
    a=rtpID:1557177696
    @:0 type=2 (00000000/36)
    [VCVIDEO_OUTGOINGATTEMPT]
    [4]
    @SIP/Transport.c:1218 type=1 (00000000/0)
    [BYE sip:[email protected]:5061 SIP/2.0
    Via: SIP/2.0/UDP m.0:5061;branch=z9hG4bK178c2dac53f4dc1e
    Max-Forwards: 70
    To: <sip:[email protected]:5061>;tag=1c23876
    From: <sip:[email protected]:5061>;tag=438999169
    Call-ID: s500573ea63db8814
    CSeq: 2 BYE
    User-Agent: Viceroy 1.2
    Content-Length: 0
    @SIP/Transport.c:1218 type=1 (00000000/0)
    [BYE sip:[email protected]:5061 SIP/2.0
    Via: SIP/2.0/UDP m.0:5061;branch=z9hG4bK058ba8604b6c6d15
    Max-Forwards: 70
    To: <sip:[email protected]:5061>;tag=1c23876
    From: <sip:[email protected]:5061>;tag=438999169
    Call-ID: s500573ea63db8814
    CSeq: 1 BYE
    User-Agent: Viceroy 1.2
    Content-Length: 0
    @SIP/Transport.c:1218 type=1 (00000000/0)
    [BYE sip:[email protected]:5061 SIP/2.0
    Via: SIP/2.0/UDP m.0:5061;branch=z9hG4bK178c2dac53f4dc1e
    Max-Forwards: 70
    To: <sip:[email protected]:5061>;tag=1c23876
    From: <sip:[email protected]:5061>;tag=438999169
    Call-ID: s500573ea63db8814
    CSeq: 2 BYE
    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 u0en0.1:5061;received=u0en0.0
    To: <sip:m.0:5061>;tag=1924108266
    From: <sip:u0en0.1:5061>;tag=2223130651
    Call-ID: 118827703223417-ping-u0en0.1
    CSeq: 9631 OPTIONS
    Contact: <sip:[email protected]:5061>;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
    0x14ccc000 - 0x14cd5fff com.apple.IOFWDVComponents 1.9.0 /System/Library/Components/IOFWDVComponents.component/Contents/MacOS/IOFWDVComp onents
    0x14d5a000 - 0x14d8afff com.apple.QuickTimeIIDCDigitizer 7.2 /System/Library/QuickTime/QuickTimeIIDCDigitizer.component/Contents/MacOS/Quick TimeIIDCDigitizer
    0x14d94000 - 0x14ddafff com.apple.QuickTimeUSBVDCDigitizer 2.0.0 /System/Library/QuickTime/QuickTimeUSBVDCDigitizer.component/Contents/MacOS/Qui ckTimeUSBVDCDigitizer
    0x14e02000 - 0x14e07fff com.apple.audio.AppleHDAHALPlugIn 1.3.3 (1.3.3a1) /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x14e16000 - 0x14f6ffff com.apple.opengl 1.4.16 /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x14f9b000 - 0x14ff4fff com.apple.driver.AppleIntelGMA950GLDriver 1.4.56 (4.5.6) /System/Library/Extensions/AppleIntelGMA950GLDriver.bundle/Contents/MacOS/Apple IntelGMA950GLDriver
    0x14ffb000 - 0x15017fff com.apple.opengl 1.4.16 /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLDriver.bundl e/GLDriver
    0x1501e000 - 0x15042fff com.apple.opengl 1.4.16 /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloa t.bundle/GLRendererFloat
    0x15297000 - 0x1529afff com.apple.audio.AudioIPCPlugIn 1.0.2 /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x152b6000 - 0x152e0fff com.apple.audio.SoundManager.Components 3.9.2 /System/Library/Components/SoundManagerComponents.component/Contents/MacOS/Soun dManagerComponents
    0x16420000 - 0x16423fff com.apple.iokit.IOQTComponents 1.4 /System/Library/Components/IOQTComponents.component/Contents/MacOS/IOQTComponen ts
    0x16c88000 - 0x16ca1fff com.apple.AppleIntermediateCodec 1.1 (141) /Library/QuickTime/AppleIntermediateCodec.component/Contents/MacOS/AppleInterme diateCodec
    0x16ca6000 - 0x16cbffff com.apple.applepixletvideo 1.2.9 (1.2d9) /System/Library/QuickTime/ApplePixletVideo.component/Contents/MacOS/ApplePixlet Video
    0x41840000 - 0x41863fff com.apple.CoreMediaPrivate 1.0 /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    0x419b0000 - 0x419ecfff com.apple.QuickTimeFireWireDV.component 7.2 /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0x41a30000 - 0x41a33fff com.apple.CoreMediaAuthoringPrivate 1.0 /System/Library/PrivateFrameworks/CoreMediaAuthoringPrivate.framework/Versions/ A/CoreMediaAuthoringPrivate
    0x8fe00000 - 0x8fe4afff dyld /usr/lib/dyld
    0x90000000 - 0x90171fff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x901c1000 - 0x901c3fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x901c5000 - 0x90202fff com.apple.CoreText 1.1.2 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90229000 - 0x902fffff com.apple.ApplicationServices.ATS 2.0.6 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x9031f000 - 0x90774fff com.apple.CoreGraphics 1.258.75 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x9080b000 - 0x908d3fff com.apple.CoreFoundation 6.4.7 (368.28) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x90911000 - 0x90911fff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x90913000 - 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.8 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90c66000 - 0x90c78fff libauto.dylib /usr/lib/libauto.dylib
    0x90c7e000 - 0x90f24fff com.apple.CoreServices.CarbonCore 682.26 /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 - 0x9141bfff libbsm.dylib /usr/lib/libbsm.dylib
    0x9141f000 - 0x91445fff com.apple.SystemConfiguration 1.8.6 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    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 - 0x91934fff com.apple.ImageIO.framework 1.5.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x91947000 - 0x919f9fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91a3f000 - 0x91a55fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x91a5a000 - 0x91a78fff com.apple.ImageIO.framework 1.5.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91a7d000 - 0x91adcfff com.apple.ImageIO.framework 1.5.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91aee000 - 0x91af2fff com.apple.ImageIO.framework 1.5.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91af4000 - 0x91b7afff com.apple.ImageIO.framework 1.5.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91b7e000 - 0x91bbbfff com.apple.ImageIO.framework 1.5.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91bc1000 - 0x91bdbfff com.apple.ImageIO.framework 1.5.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91be0000 - 0x91be2fff com.apple.ImageIO.framework 1.5.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91be4000 - 0x91cc2fff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x91cdf000 - 0x91cdffff com.apple.Accelerate 1.3.1 (Accelerate 1.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91ce1000 - 0x91d6ffff com.apple.vImage 2.5 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91d76000 - 0x91d76fff 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
    0x91d78000 - 0x91dd1fff 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
    0x91dda000 - 0x91dfefff 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
    0x91e06000 - 0x9220ffff 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
    0x92249000 - 0x925fdfff 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
    0x9262a000 - 0x92717fff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x92719000 - 0x92796fff com.apple.DesktopServices 1.3.6 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x927d7000 - 0x92a07fff com.apple.Foundation 6.4.8 (567.29) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92b21000 - 0x92b38fff com.apple.opengl 1.4.16 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92b43000 - 0x92b9bfff com.apple.opengl 1.4.16 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92baf000 - 0x92baffff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92bb1000 - 0x92bc1fff com.apple.ImageCapture 3.0.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92bd0000 - 0x92bd8fff com.apple.speech.recognition.framework 3.6 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x92bde000 - 0x92be4fff com.apple.securityhi 2.0.1 (24742) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x92bea000 - 0x92c7bfff com.apple.ink.framework 101.2.1 (71) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x92c8f000 - 0x92c93fff com.apple.help 1.0.3 (32.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x92c96000 - 0x92cb4fff com.apple.openscripting 1.2.5 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x92cc6000 - 0x92cccfff com.apple.print.framework.Print 5.2 (192.4) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x92cd2000 - 0x92d35fff com.apple.htmlrendering 66.1 (1.1.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x92d5c000 - 0x92d9dfff com.apple.NavigationServices 3.4.4 (3.4.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x92dc4000 - 0x92dd2fff com.apple.audio.SoundManager 3.9.1 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x92dd9000 - 0x92ddefff com.apple.CommonPanels 1.2.3 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x92de3000 - 0x930d8fff com.apple.HIToolbox 1.4.9 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x931de000 - 0x931e9fff com.apple.opengl 1.4.16 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x931ee000 - 0x93209fff com.apple.DirectoryService.Framework 3.3 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x93259000 - 0x93259fff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x9325b000 - 0x93911fff com.apple.AppKit 6.4.8 (824.42) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x93c92000 - 0x93d0dfff com.apple.CoreData 91 (92.1) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x93d46000 - 0x93e00fff com.apple.audio.toolbox.AudioToolbox 1.4.5 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x93e43000 - 0x93e43fff com.apple.audio.units.AudioUnit 1.4.3 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x93e45000 - 0x94006fff com.apple.QuartzCore 1.4.12 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x9404c000 - 0x9408dfff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x94095000 - 0x940cffff com.apple.opengl 1.4.16 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x940d4000 - 0x940eafff com.apple.CoreVideo 1.4.1 /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x94130000 - 0x94178fff com.apple.bom 8.5 (86.3) /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x94182000 - 0x941c0fff com.apple.vmutils 4.0.2 (93.1) /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x94204000 - 0x94215fff com.apple.securityfoundation 2.2.1 (28150) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x94223000 - 0x94261fff com.apple.securityinterface 2.2.1 (27695) /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x9427d000 - 0x9428cfff com.apple.CoreGraphics 1.258.75 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x94293000 - 0x9429efff com.apple.CoreGraphics 1.258.75 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x942ea000 - 0x94304fff com.apple.CoreGraphics 1.258.75 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x9430a000 - 0x94613fff com.apple.QuickTime 7.2.0 /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x94796000 - 0x948dcfff com.apple.AddressBook.framework 4.0.5 (487) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x94968000 - 0x94977fff com.apple.DSObjCWrappers.Framework 1.1 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x9497e000 - 0x949a7fff com.apple.LDAPFramework 1.4.2 (69.1.1) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x949ad000 - 0x949bcfff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
    0x949c0000 - 0x949e5fff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x949f1000 - 0x94a0efff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x94a15000 - 0x94a7afff com.apple.Bluetooth 1.9 (1.9f8) /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x94d39000 - 0x94dccfff com.apple.WebKit 419.2 /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x94e26000 - 0x94ea8fff com.apple.JavaScriptCore 418.5 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/JavaScriptCor e.framework/Versions/A/JavaScriptCore
    0x94ee1000 - 0x951c0fff com.apple.WebCore 418.22 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x9533f000 - 0x95362fff libxslt.1.dylib /usr/lib/libxslt.1.dylib
    0x9654b000 - 0x9654bfff com.apple.vecLib 3.3.1 (vecLib 3.3.1) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x96a32000 - 0x96a54fff com.apple.speech.LatentSemanticMappingFramework 2.5 /System/Library/PrivateFrameworks/LatentSemanticMapping.framework/Versions/A/La tentSemanticMapping
    0x96ac5000 - 0x96b9cfff com.apple.opengl 1.4.16 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x96bb7000 - 0x96bb8fff com.apple.opengl 1.4.16 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLSystem.dy lib
    0x96bba000 - 0x96bbffff com.apple.agl 2.5.9 (AGL-2.5.9) /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x96d16000 - 0x96d16fff com.apple.MonitorPanelFramework 1.1.1 /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x97478000 - 0x97561fff com.apple.viceroy.framework 278.3.10 /System/Library/PrivateFrameworks/VideoConference.framework/Versions/A/VideoCon ference
    0x97ca5000 - 0x97ca7fff com.apple.DisplayServicesFW 1.8.2 /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x97ed4000 - 0x98d38fff com.apple.QuickTimeComponents.component 7.2 /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x98fb9000 - 0x98fbbfff com.apple.QuickTimeH264.component 7.2 /System/Library/QuickTime/QuickTimeH264.component/Contents/MacOS/QuickTimeH264
    0x98fbd000 - 0x99343fff com.apple.QuickTimeH264.component 7.2 /System/Library/QuickTime/QuickTimeH264.component/Contents/Resources/QuickTimeH 264.scalar
    0x993be000 - 0x99484fff com.apple.QuickTimeMPEG4.component 7.2 /System/Library/QuickTime/QuickTimeMPEG4.component/Contents/MacOS/QuickTimeMPEG 4
    0x9990b000 - 0x99916fff com.apple.IMFramework 3.1.4 (429) /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
    0x99920000 - 0x99a8cfff com.apple.MessageFramework 2.1.1 (752.3) /System/Library/Frameworks/Message.framework/Versions/B/Message

    So I tried all of those things and it's still not working. Again, when I invite my friend to a one-way video chat it says "Declined invitation", when they invite me it says "Failed to Start Video Chat" because I did not respond, even though I hit accept. Should I change the MTU rate back to 1500? Should I enable the SPI again? Any other ideas. Here is an updated error log. This is with someone who is on AIM 6.1.
    Date/Time: 2007-08-29 22:10:18.879 -0700
    OS Version: 10.4.10 (Build 8R2232)
    Report Version: 4
    iChat Connection Log:
    AVChat started with ID 0.
    0x16b255b0: State change from AVChatNoState to AVChatStateWaiting.
    kramer120485: State change from AVChatNoState to AVChatStateInvited.
    0x16b255b0: State change from AVChatStateWaiting to AVChatStateConnecting.
    kramer120485: State change from AVChatStateInvited to AVChatStateConnecting.
    0x16b255b0: State change from AVChatStateConnecting to AVChatStateEnded.
    Chat ended with error -8
    kramer120485: State change from AVChatStateConnecting to AVChatStateEnded.
    Chat ended with error -8
    Video Conference Error Report:
    @:0 type=4 (00000000/36)
    [VCSIP_INVITEERROR]
    [19]
    @SIP/SIP.c:2448 type=4 (900A0015/36)
    [SIPConnectIPPort failed]
    @SIP/SIP.c:2448 type=4 (900A0015/36)
    [SIPConnectIPPort failed]
    @SIP/Transport.c:121 type=4 (00000000/0)
    [OPTIONS sip:m.0 SIP/2.0
    From: sip:u0en0.1:5061;tag=354210125
    To: sip:m.0
    Call-Id: 1188450613398-ping-u0en0.1
    Cseq: 14044 OPTIONS
    User-Agent: COOL/4.6.8.5225 SIPxua/2.9.2.1008 (WinNT)
    Contact: sip:u0en0.1:5061
    Via: SIP/2.0/UDP u0en0.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)
    [INVITE sip:[email protected]:5061 SIP/2.0
    Via: SIP/2.0/UDP 192.168.1.2;branch=z9hG4bK45bf9b4029512f36
    Max-Forwards: 70
    To: "u0" <sip:[email protected]:5061>
    From: "kramer120485" <sip:[email protected]>;tag=863447353
    Call-ID: 4a7ed6ce-56b7-11dc-a84e-febdb08a13c4@lip
    CSeq: 1 INVITE
    Contact: <sip:[email protected]>;isfocus
    User-Agent: Viceroy 1.2
    Content-Type: application/sdp
    Content-Length: 508
    v=0
    o=Stephanie 0 0 IN IP4 192.168.1.2
    s=kramer120485
    c=IN IP4 192.168.1.2
    b=AS:2147483647
    t=0 0
    a=hwi:1028:2:2000
    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:1527196245
    m=video 16384 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 16387 VIDEO 16385
    a=pogo
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480
    a=rtpID:399509800
    @SIP/Transport.c:1218 type=1 (00000000/0)
    [INVITE sip:[email protected]:5061 SIP/2.0
    Via: SIP/2.0/UDP 192.168.1.2;branch=z9hG4bK45bf9b4029512f36
    Max-Forwards: 70
    To: "u0" <sip:[email protected]:5061>
    From: "kramer120485" <sip:[email protected]>;tag=863447353
    Call-ID: 4a7ed6ce-56b7-11dc-a84e-febdb08a13c4@lip
    CSeq: 1 INVITE
    Contact: <sip:[email protected]>;isfocus
    User-Agent: Viceroy 1.2
    Content-Type: application/sdp
    Content-Length: 508
    v=0
    o=Stephanie 0 0 IN IP4 192.168.1.2
    s=kramer120485
    c=IN IP4 192.168.1.2
    b=AS:2147483647
    t=0 0
    a=hwi:1028:2:2000
    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:1527196245
    m=video 16384 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 16387 VIDEO 16385
    a=pogo
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480
    a=rtpID:399509800
    @SIP/Transport.c:1218 type=1 (00000000/0)
    [INVITE sip:[email protected]:5061 SIP/2.0
    Via: SIP/2.0/UDP 192.168.1.2;branch=z9hG4bK45bf9b4029512f36
    Max-Forwards: 70
    To: "u0" <sip:[email protected]:5061>
    From: "kramer120485" <sip:[email protected]>;tag=863447353
    Call-ID: 4a7ed6ce-56b7-11dc-a84e-febdb08a13c4@lip
    CSeq: 1 INVITE
    Contact: <sip:[email protected]>;isfocus
    User-Agent: Viceroy 1.2
    Content-Type: application/sdp
    Content-Length: 508
    v=0
    o=Stephanie 0 0 IN IP4 192.168.1.2
    s=kramer120485
    c=IN IP4 192.168.1.2
    b=AS:2147483647
    t=0 0
    a=hwi:1028:2:2000
    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:1527196245
    m=video 16384 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 16387 VIDEO 16385
    a=pogo
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480
    a=rtpID:399509800
    @SIP/Transport.c:1218 type=1 (00000000/0)
    [INVITE sip:[email protected]:5061 SIP/2.0
    Via: SIP/2.0/UDP m.0;branch=z9hG4bK1e53a44b0e00db38
    Max-Forwards: 70
    To: "u0" <sip:[email protected]:5061>
    From: "kramer120485" <sip:[email protected]>;tag=1875509092
    Call-ID: 494d8476-56b7-11dc-a84e-e079f26313c4@lip
    CSeq: 1 INVITE
    Contact: <sip:[email protected]>;isfocus
    User-Agent: Viceroy 1.2
    Content-Type: application/sdp
    Content-Length: 512
    v=0
    o=Stephanie 0 0 IN IP4 m.0
    s=kramer120485
    c=IN IP4 m.0
    b=AS:2147483647
    t=0 0
    a=hwi:1028:2:2000
    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:1527196245
    m=video 16384 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 16387 VIDEO 16385
    a=pogo
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480
    a=rtpID:399509800
    @SIP/Transport.c:1218 type=1 (00000000/0)
    [INVITE sip:[email protected]:5061 SIP/2.0
    Via: SIP/2.0/UDP m.0;branch=z9hG4bK1e53a44b0e00db38
    Max-Forwards: 70
    To: "u0" <sip:[email protected]:5061>
    From: "kramer120485" <sip:[email protected]>;tag=1875509092
    Call-ID: 494d8476-56b7-11dc-a84e-e079f26313c4@lip
    CSeq: 1 INVITE
    Contact: <sip:[email protected]>;isfocus
    User-Agent: Viceroy 1.2
    Content-Type: application/sdp
    Content-Length: 512
    v=0
    o=Stephanie 0 0 IN IP4 m.0
    s=kramer120485
    c=IN IP4 m.0
    b=AS:2147483647
    t=0 0
    a=hwi:1028:2:2000
    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:1527196245
    m=video 16384 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 16387 VIDEO 16385
    a=pogo
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480
    a=rtpID:399509800
    @SIP/Transport.c:1218 type=1 (00000000/0)
    [INVITE sip:[email protected]:5061 SIP/2.0
    Via: SIP/2.0/UDP m.0;branch=z9hG4bK1e53a44b0e00db38
    Max-Forwards: 70
    To: "u0" <sip:[email protected]:5061>
    From: "kramer120485" <sip:[email protected]>;tag=1875509092
    Call-ID: 494d8476-56b7-11dc-a84e-e079f26313c4@lip
    CSeq: 1 INVITE
    Contact: <sip:[email protected]>;isfocus
    User-Agent: Viceroy 1.2
    Content-Type: application/sdp
    Content-Length: 512
    v=0
    o=Stephanie 0 0 IN IP4 m.0
    s=kramer120485
    c=IN IP4 m.0
    b=AS:2147483647
    t=0 0
    a=hwi:1028:2:2000
    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:1527196245
    m=video 16384 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 16387 VIDEO 16385
    a=pogo
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480
    a=rtpID:399509800
    @:0 type=2 (00000000/36)
    [VCVIDEO_OUTGOINGATTEMPT]
    [4]
    @SIP/Transport.c:1218 type=1 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP u0en0.1:5061;received=u0en0.0
    To: <sip:m.0>;tag=584405541
    From: <sip:u0en0.1:5061>;tag=2758322183
    Call-ID: 11884505823567-ping-u0en0.1
    CSeq: 26665 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
    0x14cbc000 - 0x14cc5fff com.apple.IOFWDVComponents 1.9.0 /System/Library/Components/IOFWDVComponents.component/Contents/MacOS/IOFWDVComp onents
    0x14d4b000 - 0x14d7bfff com.apple.QuickTimeIIDCDigitizer 7.2 /System/Library/QuickTime/QuickTimeIIDCDigitizer.component/Contents/MacOS/Quick TimeIIDCDigitizer
    0x14d85000 - 0x14dcbfff com.apple.QuickTimeUSBVDCDigitizer 2.0.0 /System/Library/QuickTime/QuickTimeUSBVDCDigitizer.component/Contents/MacOS/Qui ckTimeUSBVDCDigitizer
    0x14df3000 - 0x14df8fff com.apple.audio.AppleHDAHALPlugIn 1.3.3 (1.3.3a1) /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x14e07000 - 0x14f60fff com.apple.opengl 1.4.16 /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x14f8c000 - 0x14fe5fff com.apple.driver.AppleIntelGMA950GLDriver 1.4.56 (4.5.6) /System/Library/Extensions/AppleIntelGMA950GLDriver.bundle/Contents/MacOS/Apple IntelGMA950GLDriver
    0x14fec000 - 0x15008fff com.apple.opengl 1.4.16 /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLDriver.bundl e/GLDriver
    0x1500f000 - 0x15033fff com.apple.opengl 1.4.16 /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloa t.bundle/GLRendererFloat
    0x15288000 - 0x1528bfff com.apple.audio.AudioIPCPlugIn 1.0.2 /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x152a7000 - 0x152d1fff com.apple.audio.SoundManager.Components 3.9.2 /System/Library/Components/SoundManagerComponents.component/Contents/MacOS/Soun dManagerComponents
    0x15f1f000 - 0x15f22fff com.apple.iokit.IOQTComponents 1.4 /System/Library/Components/IOQTComponents.component/Contents/MacOS/IOQTComponen ts
    0x419b0000 - 0x419ecfff com.apple.QuickTimeFireWireDV.component 7.2 /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0x8fe00000 - 0x8fe4afff dyld /usr/lib/dyld
    0x90000000 - 0x90171fff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x901c1000 - 0x901c3fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x901c5000 - 0x90202fff com.apple.CoreText 1.1.2 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90229000 - 0x902fffff com.apple.ApplicationServices.ATS 2.0.6 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x9031f000 - 0x90774fff com.apple.CoreGraphics 1.258.75 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x9080b000 - 0x908d3fff com.apple.CoreFoundation 6.4.7 (368.28) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x90911000 - 0x90911fff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x90913000 - 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.8 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90c66000 - 0x90c78fff libauto.dylib /usr/lib/libauto.dylib
    0x90c7e000 - 0x90f24fff com.apple.CoreServices.CarbonCore 682.26 /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 - 0x9141bfff libbsm.dylib /usr/lib/libbsm.dylib
    0x9141f000 - 0x91445fff com.apple.SystemConfiguration 1.8.6 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    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 - 0x91934fff com.apple.ImageIO.framework 1.5.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x91947000 - 0x919f9fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91a3f000 - 0x91a55fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x91a5a000 - 0x91a78fff com.apple.ImageIO.framework 1.5.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91a7d000 - 0x91adcfff com.apple.ImageIO.framework 1.5.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91aee000 - 0x91af2fff com.apple.ImageIO.framework 1.5.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91af4000 - 0x91b7afff com.apple.ImageIO.framework 1.5.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91b7e000 - 0x91bbbfff com.apple.ImageIO.framework 1.5.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91bc1000 - 0x91bdbfff com.apple.ImageIO.framework 1.5.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91be0000 - 0x91be2fff com.apple.ImageIO.framework 1.5.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91be4000 - 0x91cc2fff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x91cdf000 - 0x91cdffff com.apple.Accelerate 1.3.1 (Accelerate 1.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91ce1000 - 0x91d6ffff com.apple.vImage 2.5 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91d76000 - 0x91d76fff 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
    0x91d78000 - 0x91dd1fff 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
    0x91dda000 - 0x91dfefff 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
    0x91e06000 - 0x9220ffff 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
    0x92249000 - 0x925fdfff 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
    0x9262a000 - 0x92717fff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x92719000 - 0x92796fff com.apple.DesktopServices 1.3.6 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x927d7000 - 0x92a07fff com.apple.Foundation 6.4.8 (567.29) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92b21000 - 0x92b38fff com.apple.opengl 1.4.16 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92b43000 - 0x92b9bfff com.apple.opengl 1.4.16 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92baf000 - 0x92baffff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92bb1000 - 0x92bc1fff com.apple.ImageCapture 3.0.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92bd0000 - 0x92bd8fff com.apple.speech.recognition.framework 3.6 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x92bde000 - 0x92be4fff com.apple.securityhi 2.0.1 (24742) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x92bea000 - 0x92c7bfff com.apple.ink.framework 101.2.1 (71) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x92c8f000 - 0x92c93fff com.apple.help 1.0.3 (32.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x92c96000 - 0x92cb4fff com.apple.openscripting 1.2.5 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x92cc6000 - 0x92cccfff com.apple.print.framework.Print 5.2 (192.4) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x92cd2000 - 0x92d35fff com.apple.htmlrendering 66.1 (1.1.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x92d5c000 - 0x92d9dfff com.apple.NavigationServices 3.4.4 (3.4.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x92dc4000 - 0x92dd2fff com.apple.audio.SoundManager 3.9.1 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x92dd9000 - 0x92ddefff com.apple.CommonPanels 1.2.3 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x92de3000 - 0x930d8fff com.apple.HIToolbox 1.4.9 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x931de000 - 0x931e9fff com.apple.opengl 1.4.16 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x931ee000 - 0x93209fff com.apple.DirectoryService.Framework 3.3 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x93259000 - 0x93259fff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x9325b000 - 0x93911fff com.apple.AppKit 6.4.8 (824.42) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x93c92000 - 0x93d0dfff com.apple.CoreData 91 (92.1) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x93d46000 - 0x93e00fff com.apple.audio.toolbox.AudioToolbox 1.4.5 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x93e43000 - 0x93e43fff com.apple.audio.units.AudioUnit 1.4.3 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x93e45000 - 0x94006fff com.apple.QuartzCore 1.4.12 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x9404c000 - 0x9408dfff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x94095000 - 0x940cffff com.apple.opengl 1.4.16 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x940d4000 - 0x940eafff com.apple.CoreVideo 1.4.1 /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x94130000 - 0x94178fff com.apple.bom 8.5 (86.3) /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x94182000 - 0x941c0fff com.apple.vmutils 4.0.2 (93.1) /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x94204000 - 0x94215fff com.apple.securityfoundation 2.2.1 (28150) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x94223000 - 0x94261fff com.apple.securityinterface 2.2.1 (27695) /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x9427d000 - 0x9428cfff com.apple.CoreGraphics 1.258.75 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x94293000 - 0x9429efff com.apple.CoreGraphics 1.258.75 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x942ea000 - 0x94304fff com.apple.CoreGraphics 1.258.75 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x9430a000 - 0x94613fff com.apple.QuickTime 7.2.0 /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x94796000 - 0x948dcfff com.apple.AddressBook.framework 4.0.5 (487) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x94968000 - 0x94977fff com.apple.DSObjCWrappers.Framework 1.1 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x9497e000 - 0x949a7fff com.apple.LDAPFramework 1.4.2 (69.1.1) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x949ad000 - 0x949bcfff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
    0x949c0000 - 0x949e5fff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x949f1000 - 0x94a0efff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x94a15000 - 0x94a7afff com.apple.Bluetooth 1.9 (1.9f8) /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x94d39000 - 0x94dccfff com.apple.WebKit 419.2 /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x94e26000 - 0x94ea8fff com.apple.JavaScriptCore 418.5 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/JavaScriptCor e.framework/Versions/A/JavaScriptCore
    0x94ee1000 - 0x951c0fff com.apple.WebCore 418.22 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x9533f000 - 0x95362fff libxslt.1.dylib /usr/lib/libxslt.1.dylib
    0x9654b000 - 0x9654bfff com.apple.vecLib 3.3.1 (vecLib 3.3.1) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x96a32000 - 0x96a54fff com.apple.speech.LatentSemanticMappingFramework 2.5 /System/Library/PrivateFrameworks/LatentSemanticMapping.framework/Versions/A/La tentSemanticMapping
    0x96ac5000 - 0x96b9cfff com.apple.opengl 1.4.16 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x96bb7000 - 0x96bb8fff com.apple.opengl 1.4.16 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLSystem.dy lib
    0x96bba000 - 0x96bbffff com.apple.agl 2.5.9 (AGL-2.5.9) /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x96d16000 - 0x96d16fff com.apple.MonitorPanelFramework 1.1.1 /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x97478000 - 0x97561fff com.apple.viceroy.framework 278.3.10 /System/Library/PrivateFrameworks/VideoConference.framework/Versions/A/VideoCon ference
    0x97ca5000 - 0x97ca7fff com.apple.DisplayServicesFW 1.8.2 /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x97ed4000 - 0x98d38fff com.apple.QuickTimeComponents.component 7.2 /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x9990b000 - 0x99916fff com.apple.IMFramework 3.1.4 (429) /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
    0x99920000 - 0x99a8cfff com.apple.MessageFramework 2.1.1 (752.3) /System/Library/Frameworks/Message.framework/Versions/B/Message

  • Creating a FLV video player with full screen option

    > This message is in MIME format. Since your mail reader
    does not understand
    this format, some or all of this message may not be legible.
    --B_3258016930_5977304
    Content-type: text/plain;
    charset="ISO-8859-1"
    Content-transfer-encoding: 8bit
    Hi!
    I am trying to create a video player that will allow full
    screen functions
    like what we can see on youtube. I know how to create the
    window and the pop
    up but the only problem I am having is having the original
    video in the
    small screen to pause or go silent when the full screen mode
    is activated.
    How can get it done?
    Thank you.
    °K.
    --B_3258016930_5977304
    Content-type: text/html;
    charset="ISO-8859-1"
    Content-transfer-encoding: quoted-printable
    <HTML>
    <HEAD>
    <TITLE>Creating a FLV video player with full screen
    option</TITLE>
    </HEAD>
    <BODY>
    <FONT FACE=3D"Arial"><SPAN
    STYLE=3D'font-size:12.0px'>Hi!<BR>
    <BR>
    <BR>
    I am trying to create a video player that will allow full
    screen functions =
    like what we can see on youtube. I know how to create the
    window and the pop=
    up but the only problem I am having is having the original
    video in the sma=
    ll screen to pause or go silent when the full screen mode is
    activated. How =
    can get it done?<BR>
    <BR>
    Thank you.<BR>
    <BR>
    <BR>
    <B>&deg;K.<BR>
    </B> </SPAN></FONT>
    </BODY>
    </HTML>
    --B_3258016930_5977304--

    Hello,
    You should ask in the
    Windows Phone forums on the Microsoft Community forums.
    Karl
    When you see answers and helpful posts, please click Vote As Helpful, Propose As Answer, and/or Mark As Answer.
    My Blog: Unlock PowerShell
    My Book:
    Windows PowerShell 2.0 Bible
    My E-mail: -join ('6F6C646B61726C406F75746C6F6F6B2E636F6D'-split'(?<=\G.{2})'|%{if($_){[char][int]"0x$_"}})

  • I can't open 2 or more HD videos at the same time without having a lag or FPS drop. Chrome does this perfectly, I have 8 Gb RAM and use Win 7 64 bit. Firefox 16

    I watch youtube or different kinds of livestreams in HD a lot. And the last 2-3 month I'm having a problem watching them in Firefox because I get a terrible lag if I open 2 or more tabs with a video inside. As I am typing this message I've had about 5 terrible freezes (I've opened 2 livestreams in my tabs). Sometimes they just crash and I have to restard the page to go on watching, but most of the time they are lagging like they are lacking FPS and it's unwatchable. I tried cleaning the cash and using different versions of Firefox, I tried the new beta (17) and it's the same. My personal opinion is that Shockwave Flash fault, but I reinstalled it and tried different versions so many times, so I don't know what else to do. I like using Firefox, but I can't do it anymore. I tested the same thing in Chrome and it didn't lag a bit even if I open 10 videos at a time.
    My system is:
    Videocard PCI-E 2.0 ZOTAC GeForce GTX 560Ti, ZT-50303-10M, 1Gb, GDDR5
    HDD SEAGATE SV35 ST31000526SV 1Tb SATA III
    Motherboard ASUS P8H61/USB3(3.x) LGA 1155
    DDR3 8 Gb
    CPU INTEL Core i5 2500, LGA 1155
    Windows 7 64 bit
    Firefox 16.0.1

    Hi m1rAcLe,
    try to [https://support.mozilla.org/en-US/kb/troubleshoot-extensions-themes-to-fix-problems#w_turn-off-hardware-acceleration Turn off hardware acceleration] in Firefox and "disable the hardware acceleration" in the Flash Player too :
    http://helpx.adobe.com/flash-player/kb/video-playback-issues.html
    http://www.macromedia.com/support/documentation/en/flashplayer/help/help01.html
    also try to [http://kb.mozillazine.org/Flash#Disabling_Protected_Mode_in_Flash_11.3 Disabling Protected Mode in Flash] (the link is for 11.3, do the same for 11.4), see the same in "Last resort" in the next link from adobe forum http://forums.adobe.com/thread/1018071?tstart=0
    thank you

Maybe you are looking for