Custom alaw encoder does not handle media time

Hi All,
I'm trying to create a custom alaw rtp packetizer but not succeeding.
I read all the rtp/alaw related forum topics and found a great help in implementing it but the time of the media is not handled with the current code.
I created custom multiplexer, packetizer, encoder based on JMF source, but the time of the media decreases 1 by every packet, and not increases 160 as it is with good 20 ms ulaw packets created by AvTransmit2.
Can you plese help me?
Thanks
Attila

OK, I found a solution: I wrote my own MyAudioFormat class extending the original and put duration calculation for "alaw/rtp" type of stream into computeDuration method. Then I return this new MyAudioFormat class in the getMatchingOutputFormats method of the CustomALAWPacketizer packetizer. This solved the problem and took 3,5 days to figure out.
Attila
* Implements an ALaw Packetizer.
public class CustomALAWPacketizer extends com.ibm.media.codec.audio.AudioPacketizer {
    // Methods
    public CustomALAWPacketizer() {
        packetSize=160;
            supportedInputFormats = new AudioFormat[] {
             new AudioFormat(
                    AudioFormat.ALAW,
                    8000.0,
                    8,
                    1,
                    Format.NOT_SPECIFIED,
                    Format.NOT_SPECIFIED,
                    8,
                    Format.NOT_SPECIFIED,
                    Format.byteArray
        defaultOutputFormats  = new AudioFormat[] {
            /------------------ The importand part is here -------------/
                  new MyAudioFormat (
                    MyAudioFormat.ALAW_RTP,
                    8000.0,
                    8,
                    1,
                    Format.NOT_SPECIFIED,
                    Format.NOT_SPECIFIED,
                    8,
                    Format.NOT_SPECIFIED,
                    Format.byteArray
        PLUGIN_NAME="A-Law Packetizer";
    protected  Format[] getMatchingOutputFormats(Format in) {
         return defaultOutputFormats;
    public void open() throws ResourceUnavailableException{
        setPacketSize(packetSize);
        reset();
* @(#)MyAdioFormat.java     1.40 02/08/21
* Based on Sun AudioFormat.
* Contains correct ALAW_RTP duration computation.
import javax.media.format.AudioFormat;
import javax.media.Format;
public class MyAudioFormat extends AudioFormat {
     static final long serialVersionUID = 0x12345678;
     public static String ALAW_RTP = "alaw/rtp";
     * For computing the duration of the sample.
    double multiplier = -1f;
    int margin = 0;
    boolean init = false;
    public MyAudioFormat(String encoding, double sampleRate,
                 int sampleSizeInBits, int channels,
                 int endian, int signed,
                 int frameSizeInBits, double frameRate, Class dataType) {
          super (encoding, sampleRate, sampleSizeInBits, channels, endian, signed, frameSizeInBits,
                    frameRate, dataType);
     * Returns the duration of the media based on the given length
     * of the data.
     * @param length length of the data in this format.
     * @return the duration in nanoseconds computed from the length of
     * the data in this format.  Returns -1 if the duration cannot be
     * computed.
    public long computeDuration(long length) {
     if (init) {
         // We don't know how to compute this format
         if (multiplier < 0)
          return -1;
         return (long)((length - margin) * multiplier) * 1000;
     if (encoding == null) {
         init = true;
         return -1;
     } else if (encoding.equalsIgnoreCase(AudioFormat.LINEAR) ||
             encoding.equalsIgnoreCase(AudioFormat.ULAW)) {
         if (sampleSizeInBits > 0 && channels > 0 && sampleRate > 0)
          multiplier = (1000000 * 8)/sampleSizeInBits/channels/sampleRate;
     } else if (encoding.equalsIgnoreCase(AudioFormat.ULAW_RTP)) {
         if (sampleSizeInBits > 0 && channels > 0 && sampleRate > 0)
          multiplier = (1000000 * 8)/sampleSizeInBits/channels/sampleRate;
         } else if (encoding.equalsIgnoreCase(MyAudioFormat.ALAW_RTP)) {
            /------------------ The importand part is here -------------/
         if (sampleSizeInBits > 0 && channels > 0 && sampleRate > 0)
          multiplier = (1000000 * 8)/sampleSizeInBits/channels/sampleRate;
     } else if (encoding.equalsIgnoreCase(AudioFormat.DVI_RTP)) {
         if (sampleSizeInBits > 0 && sampleRate > 0)
          multiplier = (1000000 * 8)/sampleSizeInBits/sampleRate;
         margin = 4;
        } else if (encoding.equalsIgnoreCase(AudioFormat.GSM_RTP)) {
         if (sampleRate > 0)
          multiplier = (160 * 1000000 / 33) / sampleRate;
        } else if (encoding.equalsIgnoreCase(AudioFormat.G723_RTP)) {
         if (sampleRate > 0)
          multiplier = (240/24 * 1000000) / sampleRate;
     } else if (frameSizeInBits != Format.NOT_SPECIFIED &&
             frameRate != Format.NOT_SPECIFIED) {
         // We don't know this codec, but we can compute the
         // rate by using the frame rate and size.
         if (frameSizeInBits > 0 && frameRate > 0)
          multiplier = (1000000 * 8)/frameSizeInBits/frameRate;
     init = true;
     if (multiplier > 0)
         return (long)((length - margin) * multiplier) * 1000;
     else
         return -1;
}

Similar Messages

  • CS6: Premiere exports MXF Op1a (mpeg based) but Media Encoder does not.

    As a company we use several local machines with a full installation of CS6.
    Premiere Pro exports in our broadcast format (MXF Op1a - mpeg based - Long GOP - 50Mb - Top Field First - etc...) still Media Encoder does not.
    They we both installed in the same procedure, full installation of CS6. MXF presets are present on both directories (Premiere and Media Encoder).
    ME simply doesn't recognize "any know exporters" even if I force a preset, when it comes to MXF.
    We have to import every single video into Premiere to export as MXF. It's difficult to create an effective workflow this way.
    Any thoughts on why is this happening?
    NOTE:
    - Updated twice all machines - first to 6.0.3, now to 6.0.5 = no result
    - Copied presets from a working trial installation = no result
    - Microsoft based OS core i7 with 12Gb RAM, 3Tb HD and Nvidia Quadro 4000
    Regards, RicardoM

    I've read a lot of suggestions towards similar issues. None worked.
    - installed codec packs incluiding different mpeg variations = no result
    - copied /common preset files from premiere to AME = no result
    - copied and replaced the full directory of AME from another working AME (with MXF exporter) = no result
    - re-installed CS6 = no result
    - updated CS6 twice = no result
    - added MXF Preset zip file available in the official Adobe support (although it refers to mac presets) = no matter... no result
    I really don't know what else to do.
    It's difficult to accept suggestions like "format c and start over" cause of the impact on the production room, so I really need more options other than the extreme ones...
    Any ideia Jim Simon?
    Thanks in advance!
    BTW: Must add that in all processes above, MXF exporting was allways possible in Premiere, just not in AME.

  • I get unexpectedly logged out from my mail box and and recieve the following message: "The custom error module does not recognize this error."

    I am repeatedly and unexpectedly logged-out from my mail box when working on a document. It frequently happens when I choose Send or Save, but it could happen any time. The file that I worked on disappears completely. Before, the file could be found in the draft box or some other place categorized as Auto Recovery. Now, instead, I get the following message: "The custom error module does not recognize this error." I am working at home, connected to a university server. The same problem appears with both of my computers, which are connected by a router. I have a MacBook Pro and am working with Firefox 6.0.2. I have a wireless broadband connection with Internet. AirPort is connected to Lindstrom and has IP address 192.168.0.198. Router: D-Link Model DIR-635. Modem: ZyXEL Model No. 660H D Triple Play Modem.
    Best wishes,
    Lars Lindström, Professor
    <[email protected]>

    Hi Phil,
    Generally, when a user sends an incoming request to an Exchange 2010 Client Access server using Outlook Web App and the user’s mailbox is on an Exchange 2010 mailbox in a different Active Directory site,
    Exchange 2010 determines whether the Client Access server has the
    ExternalURL property set in that Active Directory site. If it is and the cross-site silent redirection has been enabled, the user will be automatically redirected to the specified URL.
    Thus, please make sure the External URL property is set properly in your environment. And also
    disable the WindowsAuthentication for OWA VD to have a try. If the issue persists, please try the following KB to reset the Outlook Web Access-related virtual directories:
    http://support.microsoft.com/kb/941201
    Thanks,
    Winnie Liang
    TechNet Community Support
    Sorry for the late reply.  Yes, the ExternalURL is set; otherwise, it wouldn't work at all.  98% of the time everything is fine.
    My issue described a problem that appears only during session timeouts.  I've pretty much verified that this is the case; Exchange 2010 does not appropriately handle the timeouts sometimes when using cross-site redirection.

  • TableView : sort = "SERVER" ...does not work for "TIME"

    Hi,
    TableView sort = "Server" works automatically for "Date" Fields and "Text" Fields.
    But it does not work for "Time" field with data element "CDUZEIT". It shows the below error message:
    Note
    The following error text was processed in the system IFD : Invalid sort field type in "SORT ... AS TEXT".
    The error occurred on the application server ifdmain_IFD_01 and in the work process 0 .
    The termination type was: RABAX_STATE
    The ABAP call stack was:
    Form: IF_HTMLB_ELEMENT_DELEGATED~DO_AT_END of program CL_HTMLB_TABLEVIEW============CP
    Form: DELEGATED_END of program CL_HTMLB_ELEMENT==============CP
    Form: IF_BSP_ELEMENT~DO_AT_END of program CL_HTMLB_TABLEVIEW============CP
    Form: ONLAYOUT of program CLO27OLHO7EA9KVWPONPDC2NLTDFHCP
    Form: %_ONLAYOUT of program CL_O27OLHO7EA9KVWPONPDC2NLTDFHCP
    Form: DO_REQUEST of program CL_BSP_PAGE===================CP
    Form: CALL_VIEW of program CL_BSP_PAGE_BASE==============CP
    Form: CALL_VIEW of program CL_BSP_CONTROLLER=============CP
    Form: DO_REQUEST of program ZCL_ZPR_C_ACTION_LOG==========CP
    Form: DO_REQUEST of program CL_BSP_CTRL_ADAPTER===========CP
    Thanks and Regards,
    Bindiya

    Welcome to SDN.
    This problem and solution to it is exaplined in the following oss note number.
    <a href="https://service.sap.com/~form/handler?_APP=01100107900000000342&_EVENT=REDIR&_NNUM=893210&_NLANG=E">893210</a>
    Regards
    Raja

  • How do I create (or delete) a new tag for a website, so that its tag appears (or does not appear) every time I restart Firefox?

    How do I create (or delete) a new tag for a website, so that its tag appears (or does not appear) every time I restart Firefox?

    See this - https://support.mozilla.org/en-US/kb/How%20to%20set%20the%20home%20page

  • In 5s, personal hot spot does not work from time to time. Not detected

    In 5s, personal hot spot does not work from time to time. Iphone does not get detected on Wi-fi or bluetooth. Restarting or rebooting does not help.  

    Settings, general, reset and reset network settings. Clear out your network settings and set personal hotspot again.
    also avoid special characters making a password. hashtags or open brackets for example doesn't work too good.

  • 5800 does not retain date&time stamp for SMS trans...

    I just got a new 5800XM a week ago.  I upgraded from a Samsung SGH-C260.  When I tried to copy the SMS messages off my SIM and on to the Nokia, all the date and time information of the original messages was lost.  I tried the SIM in a new Samsung Star and it was able to read the date and time information without trouble, so obviously the information is there and readable.
    Does anyone know of a way to successfully transfer these SMS messages without losing the date and time information?
    Thanks!

    Paresh - my understanding of the original post is that when she does show startup-config that no date is there. There is an explanation for this.
    Narayan - the service timestamps is a good command and I agree that specifying datetime is better than the default of displaying uptime. But this command does not have anything to do with the date in the config file.
    What does control the presence (or absence in this case) is whether the router has authoritative time at the time the config was changed or saved. The router can have authoritative time by use of the clock set command or by use of NTP. I believe that NTP is a much better solution.
    So if the router really knows correct time it will put the time stamp into the config. And if the router does not know correct time it will supress the time stamp. From the fact that the startup config does not have a time stamp we can believe that the router did not know authoritative time when the config was saved. And I do not know any good way to go back and discover it.
    HTH
    Rick

  • DATE type returned from function does not return the time component

    Hi,
    I'm dealing with a strange problem. I have a PL/SQL function (running on Oracle 8.1.4.7) which returns a DATE value. Like we all know the DATE datatype includes a date component and a time component.
    The function I used for testing is like this:
    FUNCTION ReturnDate return Date is
    dReturn Date;
    Begin
    select sysdate into dReturn from dual;
    return dReturn;
    end ReturnDate;
    When I call this function from .NET using ODP.NET the date value I get does not have the time component included only the day-month-year components.
    This is a code-snippet that calls the function :
    command.CommandText="Schema.ReturnDate";
    command.CommandType=CommandType.StoredProcedure;
    command.Parameters.Add("Return_Value",
    OracleDbType.Date,0,ParameterDirection.ReturnValue);
    command.ExecuteNonQuery();
    I use the OracleDbType.Date type which I think is the most logical choice, because the type in the Database is after all DATE.
    However this does not include the time componet. But if I change the OracleDbType.Date to OracleDbType.TimeStamp I get the time component. I'm not happy with this "hack" because I'm not sure what will happen when we upgrade our version of the Database to Oracle 9i which uses the new TimeStamp datatype.
    Is this a bug that the OracleDbType.Date does not include the time component??

    How do you examine the output Date value?
    If it is from the string, then the time components will
    not show because the NLS_DATE format in the client
    machine does not contain the time components.
    In American, the Date format is 'DD-MON-RR' by default whereas, the TimeStamp format is 'DD-MON-RR HH.MI.SSXFF AM' by default.
    Can you take a look at the time components from the OracleDate by accessing the time properties, eg. OracleDate.Hour, OracleDate.Minute..etc to see if the time values are there?
    Thanks
    Martha

  • Mavericks Server; smbd: File system does not support 0x0, time/size attrs

    So I recently installed a Mac Mini with Mavericks and Server 3.2.2 in the main office of my company and everything has been going well, minus a few expected bugs, until recently. Starting last week we've been experiencing random intervals where File Sharing stopped working altogether, and I'd been able to reboot and get it running again. Unfortunately, as I'm the Systems and Server Admin, I've been too busy to look at the logs until now (following the degradation of one of the drives in our DAT-Optic RAID system, I figured it was time to make it a priority), and I'm seeing dozens of entries in the system logs regarding the process smbd with file system does not support errors.
    Here's an example.
    11/19/14 9:56:21.107 AM smbd[602]: File system does not support 0X40000, file attrs
    11/19/14 9:56:21.107 AM smbd[602]: File system does not support 0X0 time attrs
    11/19/14 9:56:21.107 AM smbd[602]: File system does not support 0X0, size attrs
    11/19/14 9:56:21.107 AM smbd[602]: File system does not support 0X40000, file attrs
    11/19/14 9:56:21.107 AM smbd[602]: File system does not support 0X0 time attrs
    11/19/14 9:56:21.107 AM smbd[602]: File system does not support 0X0, size attrs
    11/19/14 9:56:21.108 AM smbd[602]: File system does not support 0X40000, file attrs
    11/19/14 9:56:21.108 AM smbd[602]: File system does not support 0X0 time attrs
    11/19/14 9:56:21.108 AM smbd[602]: File system does not support 0X0, size attrs
    11/19/14 9:56:21.108 AM smbd[602]: File system does not support 0X40000, file attrs
    11/19/14 9:56:21.108 AM smbd[602]: File system does not support 0X0 time attrs
    11/19/14 9:56:21.108 AM smbd[602]: File system does not support 0X0, size attrs
    11/19/14 9:56:21.110 AM smbd[602]: File system does not support 0X40000, file attrs
    11/19/14 9:56:21.110 AM smbd[602]: File system does not support 0X0 time attrs
    11/19/14 9:56:21.110 AM smbd[602]: File system does not support 0X0, size attrs
    11/19/14 9:56:21.119 AM smbd[602]: File system does not support 0X40000, file attrs
    11/19/14 9:56:21.119 AM smbd[602]: File system does not support 0X0 time attrs
    11/19/14 9:56:21.119 AM smbd[602]: File system does not support 0X0, size attrs
    11/19/14 9:56:21.119 AM smbd[602]: File system does not support 0X40000, file attrs
    11/19/14 9:56:21.119 AM smbd[602]: File system does not support 0X0 time attrs
    11/19/14 9:56:21.119 AM smbd[602]: File system does not support 0X0, size attrs
    11/19/14 9:56:21.124 AM smbd[602]: File system does not support 0X40000, file attrs
    11/19/14 9:56:21.124 AM smbd[602]: File system does not support 0X0 time attrs
    11/19/14 9:56:21.124 AM smbd[602]: File system does not support 0X0, size attrs
    11/19/14 9:56:21.124 AM smbd[602]: File system does not support 0X40000, file attrs
    11/19/14 9:56:21.124 AM smbd[602]: File system does not support 0X0 time attrs
    11/19/14 9:56:21.124 AM smbd[602]: File system does not support 0X0, size attrs
    11/19/14 9:56:21.125 AM smbd[602]: File system does not support 0X40000, file attrs
    11/19/14 9:56:21.125 AM smbd[602]: File system does not support 0X0 time attrs
    11/19/14 9:56:21.125 AM smbd[602]: File system does not support 0X0, size attrs
    11/19/14 9:56:21.125 AM smbd[602]: File system does not support 0X40000, file attrs
    11/19/14 9:56:21.125 AM smbd[602]: File system does not support 0X0 time attrs
    11/19/14 9:56:21.125 AM smbd[602]: File system does not support 0X0, size attrs
    11/19/14 9:56:21.130 AM smbd[602]: File system does not support 0X40000, file attrs
    11/19/14 9:56:21.130 AM smbd[602]: File system does not support 0X0 time attrs
    11/19/14 9:56:21.130 AM smbd[602]: File system does not support 0X0, size attrs
    11/19/14 9:56:21.131 AM smbd[602]: File system does not support 0X40000, file attrs
    As far as I can tell, nothing else has changed in our system except for the fact that one of the drives died and was rebuilt as of yesterday (these smbd problems extend to last week shortly after I updated to 3.2.2 I believe). Any help would be much appreciated. I would normally first attempt a repair permissions to see if the issue is related to a bad plist somewhere but the last time we did that, our ACLs were duplicated across our file share and often incorrectly. I'm not sure if it's just me but the last Mac Server software I used was Snow Leopard Server (when it was still a full OS version) and it was infinitely more stable than what I've experienced thus far with Server 3. Anyway, I appreciate any help/advice that can be given and I apologize for the rant.

    Been getting the same errors for a while.
    1/13/15 11:38:04.975 AM smbd[1112]: File system does not support 0X40000, file attrs
    1/13/15 11:38:04.975 AM smbd[1112]: File system does not support 0X0 time attrs
    1/13/15 11:38:04.975 AM smbd[1112]: File system does not support 0X0, size attrs
    1/13/15 11:38:05.124 AM smbd[1112]: File system does not support 0X40000, file attrs
    1/13/15 11:38:05.124 AM smbd[1112]: File system does not support 0X0 time attrs
    1/13/15 11:38:05.124 AM smbd[1112]: File system does not support 0X0, size attrs
    Believe they are related to random disconnects from the file server (10.9.5).

  • Why does Notes close every time I open it?   I can't access my notes...

    Why does Notes close every time I open it?   I can't access my notes;
    there don't appear to be any.    Help!
    When I check in Settings, Notes has disappeared from the list of Apps
    On my iPhone, yet I didn't delete it.    I had dozens of notes, lots
    of necessary information stored therein. 
    Thanks for any help....

    I was having this issue also. I found this thread and disabling Exchange Notes did the trick. Obviously, this is the solution only if you were using Exchange to begin with.
    If you want to continue to use Exchange notes or perhaps try this to see if it works in general, I found a fix on this site. All works well now.
    1. Delete your exchange account from the Mail, Contacts & Calendars pane in System Preferences.
    2. Go to Finder, click "Go" in the menu bar, click "Go to Folder" and type in "~/Library" (without the quotes) in the box. This will take you to your user Library folder.
    3. Use the search box in the finder and type in "com.apple.notes" and click "Library" in the search bar that appears. This should now find several folders and files related to the Notes app. Rename or delete everything except the help files (with the lifesaver icons on them).
    4. Restart your Mac. Put your exchange account back into System Preferences, you can go ahead and activate the Notes sync service.
    5. Open Notes and it should be working now!

  • Hello am using ios 7.0.4 I have a question about messages that it does not show the time of a particular message after first message that I recive form a paricular person so please in the next version change this and with every message show time and date

    hello am using ios 7.0.4 I have a question about messages that it does not show the time of a particular message after first message that I recive form a paricular person so please in the next version change this and with every message show time and date

    Hi,
    How is everything going? Have you checked this issue from OWA? If so, please let me know the result.
    In adition, please also try to use the following powershell commands to check if the assistant has right permissions:
    Get-MailboxFolderPermission -Identity
    CEO’s email address:\Calendar -User assistant’s email address
    Also check with:
    Get-Mailbox -Identity CEO’s mailbox
    | fl *GrantSendOnBehalfTo
    Please let me know the result.
    Best Regards,
    Steve Fan
    Forum Support
    Come back and mark the replies as answers if they help and unmark them if they provide no help.
    If you have any feedback on our support, please click
    here

  • Why do I receive Error 200378 "Custom scale specified does not exist"?

    I am trying to perform offset nulling using an NI-9237.  I receive and error in regards to the custom scale even though I programmatically create the scale prior to the task.  I am experiencing the erro whne using LV8.2.1 but with LV8.6 the problem disappears (same code, just open in LV8.6 and run)
    The error is the following:
    Error 200378 "Custom scale specified does not exist" 
    Possible reason(s):
     Measurements: Custom scale specified does not exist.  Custom Scale: test
    Channel Name: LoadCell_StrainGage_Sim/ai0
    Task Name: _unnamedTask<F>
    I have attached the code in LV8.2.1
    Thanks
    Dan
    Attachments:
    test.vi ‏38 KB

    Dan,
    I tried your VI and it worked for me after I changed the channel from "LoadCell_StrainGage_Sim/ai0" to something that was on my system.  Before that, I got the same error.  So...are you sure that there is LoadCell_StrainGage_Sim/ai0 configured in MAX?  Stupid question, I know, but it was the only thing I changed.
    -Matt
    -Matt Bradley
    ************ kudos always appreciated, but only when deserved **************************

  • WRT54GX2 does not pick up time from the network...

    I have a WRT54GX2 running firmware 1.01.14 and it does not pick up time from the network. I have PacBell (now AT&T) as an ISP and a DSL link. My old Netgear router picks up the time immediately. I am trying to figure out if I have a defective unit or if this is a firmware bug. Without the time, I can not use any of the scheduling functions, nor measure uptime.
    Does anyone have this router with the time working? I have set the appropriate time zone.
    Thanks,
    Martin

    mneiman wrote:
    Thanks for you ideas.
    The backup file appears to be binary. However in searching through it I did see 3 time related text strings, namely: clock.stdtime.gov.tw, time-b.nist.gov and time.nist.gov. I can successfully ping clock.stdtime.gov.tw and time.nist.gov. This reinforces my belief that my ISP (AT&T nee PacBell) is not blocking access.
    however ntp works on TCP port 123. ping works on udp 7 afaik. if your old netgear works i guess this is a router problem.
    have you reset the router yet? afaik press reset button for 10 seconds.
    you will however loose all settings and need to enter them again. it may however fix the issue.Message Edited by linksysinfo on 07-09-2006 03:09 AM
    Regards Simon
    NAS: TS-459 Pro - 3.6.1 Build0302T - 4 x 1TB Samsung HD103SJ : EXT4 - APC ES 700VA UPS
    QPKG: WordPress 3.4, TwonkyMedia 6.0.39 QPKG - Zenphoto1.4.2.1 [7802] - phpMyAdmin v3.3.10
    Network: Netgear DG834G V4.01.40 - DGTeam Rev. 0849 -> Cisco RV220W 1.0.4.13, Cisco SLM2008, Dlink DSM-520, Xbox360

  • Adobe After Effects, Premiere and Encoder does not use the GPU (CUDA) ?

    Please! Explain me. Why? Adobe After Effects, Premiere and Encoder does not use GPU (CUDA) ?
    Everytime i have GPU Load from 0 to 10% !!! (GeForce GTX 970) And also my CPU load is not full. Any suggestions?

    seg.48162731 wrote:
    At the moment i use AE, AP and ME CC 2014 8.2 with the latest updates. I have GTX 970 and AMD 8350. What's my problem?
    Which chipset is on your system's motherboard? Which motherboard is your PC equipped with?
    If the motherboard is using an AMD 790 or 970 series chipset, the HyperTransport bus will be running at a reduced speed, and thus the CPU performance will be worse than a quad-core Intel i5 CPU without hyperthreading. In many instances, this means that the GPU will be laying idle, waiting for the CPU to catch up.
    If on the other hand the motherboard uses an AMD 990FX chipset, then it's likely that there is something else bottlenecking your PC.

  • I bought and legally own PS CS3. Installed on a desktop and the machine died completely. Downloaded a trial of CS3 from Adobe site. Went to activate and said too many activations. Activate over the phone. EXCEPT Adobe does not handle activation issues ove

    I bought and legally own PS CS3. Installed on a desktop and the machine died completely. Downloaded a trial of CS3 from Adobe site. Went to activate and said too many activations. Activate over the phone. EXCEPT Adobe does not handle activation issues over the phone. Adobe doesn't care about their older products - they don't care that I spent hundreds of dollars for CS3. This is truly disgusting corporate behavior. Is there anything I can do? We aren't all rich photographers. I paid a great deal of money for this product. Is it now useless?Thank you,
    James Scott

    HI James please contact the Adobe Chat Team for activation issue
    kindly do the mentioned steps as follow in order to get hold of chat rep of adobe
    Go to www.adobe.com/getsupport
    select the product as adobe creative suite - then select the issue as adobe id and sign in - and then click on still need help contact us then you will be able to find chat option and they will help you with the chat issue

Maybe you are looking for

  • External Hard Drive using MAC and PC

    I recently formatted my 250gb hard drive to MS-DOS (FAT32) so I can use the drive with Mac and PC. When I came to plug in my external hard drive in the other day with another mac PC it said I could only read only under get info. Why is this? I couldn

  • Error in Proxy- Table not getting updated

    Hi, This is an Interface between Oracle and SAP SRM. The Middleware used is SAP XI.XI is fetching the data based on the SQL condition in the JDBC Adapter. The SAP XI JDBC Adapter picks up the data with a poll interval of 600 seconds and do the requir

  • How can I turn off automatic logins to web sites

    Just re-installed fire fox and now it automatically logs me in to sites with stored passwords. I don't want this as it is really not secure, is it. It allows anyone to use my logins.

  • Integration

    HI, ALL     I need to now the integration betwwen sd mm pp with fi co i am going to work on an implementation project pls give clear explanation with all steps in all modules related to integration with fi/co. and pls give the effect for field select

  • No data list is coming in Data View...

    Hi ,   I have created a print form in SFP. I have created the CONTEXT and activated it. But when I press the LAYOUT tab my DATA VEIW is not getting populated. My DATA VIEW pallet is empty, even though the after creating the context and activation it.