What kinds of error iCloud symbol with ! inside?

added song purcahsed outside of iTunes to library. iCloud symbol shows cloud with ! inside. what kind of errors produce this symbol? how to correct?

See http://support.apple.com/kb/ts4124.

Similar Messages

  • 'what kind of error 'plzzz help

    hi all
    plz check the following code and error which it is givn 2 me. how shld i rectify it? not able to get what kind of error it is.
    *& Report  ZNBS_FI_FS10N
    REPORT  ZPRAC_FI_VENDORSTATEMENT.
    Report Title          : Display Line item balances for VENDORs with opening balances
    Functional Consultant : Mr ShreeHari
    ABAPER                : Sanjay K, NBS
    TYPE-POOLS slis.
    DATA   :   fcat               TYPE slis_t_fieldcat_alv WITH HEADER LINE,
               ls_event               TYPE slis_alv_event,
               repid                  LIKE sy-repid.
    DATA   :   b_layout               TYPE slis_layout_alv.
    DATA   :   gt_events              TYPE slis_t_event WITH HEADER LINE.
    DATA   :   lt_list_commentary     TYPE slis_t_listheader,
               l_logo                 TYPE w3_qvalue.
    TABLES : BSAK, ska1, bsis, bkpf, thead, t003, t003t, LFA1, skat.
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME.
    SELECT-OPTIONS pbukrs FOR bsis-bukrs default '1000'.
    SELECT-OPTIONS pLIFNR FOR LFA1-LIFNR  default '410028'.
    SELECT-OPTIONS pbudat FOR bsis-budat OBLIGATORY default '20060401' to '20061219'.
    SELECTION-SCREEN END OF BLOCK b1.
    DATA : BEGIN OF itab OCCURS 0,
           belnr LIKE bsis-belnr,
           bukrs LIKE bsis-bukrs,
           gjahr LIKE bsis-gjahr,
           blart LIKE bkpf-blart,
           bldat LIKE bkpf-bldat,
           budat LIKE bkpf-budat,
           LIFNR LIKE LFA1-LIFNR,
           dmbtr LIKE BSAK-dmbtr,
           wrbtr LIKE BSAK-wrbtr,
           shkzg LIKE BSAK-shkzg,
           ltext LIKE t003t-ltext,
           END OF itab.
    DATA TEXT(60). " LIKE t003t-ltext.
    DATA jtab LIKE itab OCCURS 0 WITH HEADER LINE.
    DATA : BEGIN OF final OCCURS 0,
            belnr LIKE bsis-belnr,
           bukrs LIKE bsis-bukrs,
           gjahr LIKE bsis-gjahr,
           blart LIKE bkpf-blart,
           bldat LIKE bkpf-bldat,
           budat LIKE bkpf-budat,
           LIFNR LIKE LFA1-LIFNR,
           debit LIKE BSAK-dmbtr,
           credit LIKE BSAK-wrbtr,
           shkzg LIKE BSAK-shkzg,
           balance LIKE BSAK-dmbtr,
           ltext LIKE t003t-ltext,
           END OF final.
      DATA : BEGIN OF output OCCURS 0,
             belnr LIKE bsis-belnr,
             bukrs LIKE bsis-bukrs,
             gjahr LIKE bsis-gjahr,
             blart LIKE bkpf-blart,
             bldat LIKE bkpf-bldat,
             budat LIKE bkpf-budat,
             LIFNR LIKE LFA1-LIFNR,
             ddebit LIKE BSAK-dmbtr,
             ccredit LIKE BSAK-wrbtr,
             shkzg LIKE BSAK-shkzg,
             balance LIKE BSAK-dmbtr,
             ltext LIKE t003t-ltext,
             hkont LIKE bsis-hkont,
             bschl LIKE bsis-bschl,
             TXT50 LIKE SKAT-TXT50,
             END OF output.
    ********FOR OPENING BALANCE.
    DATA : BEGIN OF open OCCURS 0,
           wrbtr LIKE BSAK-wrbtr,
           dmbtr LIKE BSAK-dmbtr,
           bukrs LIKE BSAK-bukrs,
           shkzg LIKE BSAK-shkzg,
           END OF open.
    DATA clear LIKE open OCCURS 0 WITH HEADER LINE.
    DATA: BEGIN OF bal OCCURS 0,
          dbal LIKE bsis-wrbtr,
          cbal LIKE bsis-dmbtr,
          shkzg LIKE bsis-shkzg,
          END OF bal.
    DATA date TYPE sy-datum.
    MOVE pbudat-low TO date.
    date = date - 1.
    DATA: BEGIN OF balance OCCURS 0,
          debit LIKE bsis-wrbtr,
          credit LIKE bsis-dmbtr,
          total LIKE bsis-dmbtr,
          END OF balance.
    DATA : BEGIN OF line OCCURS 0,
           belnr LIKE bsis-belnr,
           dmbtr LIKE bsis-dmbtr,
           wrbtr LIKE bsis-wrbtr,
           hkont LIKE bsis-hkont,
           gjahr LIKE bsis-gjahr,
           bukrs LIKE bsis-bukrs,
           shkzg LIKE bsis-shkzg,
           budat LIKE bsis-budat,
           blart LIKE bsis-blart,
           bschl LIKE bsis-bschl,
           TXT50 like skat-txt50,
           END OF line.
    TOP-OF-PAGE.
      PERFORM top_of_page.
    START-OF-SELECTION.
    *perform integrate.
      PERFORM fetch.
      PERFORM build_catalog.
      PERFORM layout.
    END-OF-SELECTION.
      PERFORM display .
    *&      Form  Fetch
          text
    -->  p1        text
    <--  p2        text
    FORM fetch .
      SELECT * FROM BSIK INTO CORRESPONDING FIELDS OF open WHERE bukrs IN pbukrs AND budat LE date  AND LIFNR IN pLIFNR.
        COLLECT open.
      ENDSELECT.
      SELECT * FROM BSAK INTO CORRESPONDING FIELDS OF clear WHERE bukrs IN pbukrs AND budat LE date AND LIFNR IN pLIFNR.
        COLLECT clear.
      ENDSELECT.
      LOOP AT open.
        MOVE : open-dmbtr TO bal-dbal,
               open-wrbtr TO bal-cbal,
               open-shkzg TO bal-shkzg.
        IF open-shkzg = 'H'.
          open-dmbtr = open-dmbtr * -1.
          open-wrbtr = open-wrbtr * -1.
        ENDIF.
        COLLECT bal.
      ENDLOOP.
      LOOP AT clear.
        MOVE : clear-dmbtr TO bal-dbal,
               clear-wrbtr TO bal-cbal,
               clear-shkzg TO bal-shkzg.
        IF clear-shkzg = 'H'.
          clear-dmbtr = clear-dmbtr * -1.
          clear-wrbtr = clear-wrbtr * -1.
        ENDIF.
        COLLECT bal.
      ENDLOOP.
      CLEAR bal.
      LOOP AT bal.
        IF bal-shkzg = 'H'.
          MOVE  : bal-dbal TO balance-debit.
          CLEAR bal-dbal.
        ELSE.
          MOVE        bal-cbal TO balance-credit.
          CLEAR bal-cbal.
        ENDIF.
        COLLECT balance.
        CLEAR balance.
      ENDLOOP.
    ********FOR LINE ITEMS
      SELECT * FROM bkpf INTO CORRESPONDING FIELDS OF itab WHERE bukrs IN pbukrs AND budat IN pbudat .
        SELECT * FROM BSAK INTO CORRESPONDING FIELDS OF itab WHERE bukrs IN
        pbukrs  AND belnr = itab-belnr AND gjahr = itab-gjahr.
          IF itab-shkzg = 'H'.
            itab-dmbtr = itab-dmbtr * -1.
            itab-wrbtr = itab-wrbtr * -1.
          ENDIF.
          SELECT ltext FROM t003t INTO itab-ltext WHERE spras = 'EN' AND blart = itab-blart.
            APPEND itab.
          ENDSELECT.
        ENDSELECT.
      ENDSELECT.
      SELECT * FROM BSIK INTO CORRESPONDING FIELDS OF itab WHERE bukrs IN pbukrs AND budat IN pbudat AND LIFNR IN pLIFNR.
        IF itab-shkzg = 'H'.
          itab-dmbtr = itab-dmbtr * -1.
          itab-wrbtr = itab-wrbtr * -1.
        ENDIF.
        SELECT ltext FROM t003t INTO itab-ltext WHERE spras = 'EN' AND blart = itab-blart.
          APPEND itab.
        ENDSELECT.
      ENDSELECT.
      DELETE itab WHERE LIFNR NOT IN pLIFNR.
    <b>Error: <%_L002> IS NOT AN INTRNAL TABLE-THE OCCURS SPECIFICATION IS MISSING)</b></b>
    error at delete statement.
    its urgent.
    thanks all in advance.
    appropriate reward will b given.

    hi gaurav,
    u created internal table itab with out header line and u r trying to delete it from internal body itself which isn't possible.
    so do like this,
    create workarea [wa_itab] of same structure of itab [internal table] and give delete statement as
    delete wa_itab from itab where condition.
    if helpful reward some points.
    with regards,
    suresh babu aluri.

  • When loading the music application on iPhone 4s it has a iCloud symbol with a loading bar but isn't loading... any advise to help?

    When loading the music application on iPhone 4s it has a iCloud symbol with a loading bar but isn't loading... any advise to help?

    keith
    You have posted your issue in Using Apple Support Communities whose topic is 'How to use this forum software's interface, features and/or how to find what you wish'. It is a relatively low traffic and inappropriate forum for your problem. I will ask our Hosts to move it to Using IiPhone where it may get a more rapid response from your fellow users.
    ÇÇÇ

  • What kind of files are compatible with iMovie?

    What kind of files are compatible with iMovie?

    Hello Jonsi41,
    Thanks for using Apple Support Communities.
    For more information on this, take a look at:
    Import video from movie files
    http://support.apple.com/kb/ph2153
    files can be in a number of formats, including MPEG-4 and standard (DV) file formats and some .mov file formats.
    Best of luck,
    Mario

  • What kind of camcorders will work with iMovie?

    I'm confused about what kind of camcorders can be used to import footage onto iMovie. Does the camcorder have to be digital? Can it have one of those little tapes?
    Also, if I don't have iDVD can I record the edited video right onto the camcorder tape from iMovie? I've never used this stuff before, any comments are appreciated.
    Thanks.
    iBook G4   Mac OS X (10.3.9)  

    Hi stiles:
    First, I suggest strongly that you view this:
    http://www.apple.com/support/imovie/tutorial/
    IDVD and iMovie are two different software programs that come as a part of the iLife bundle. You do not need iDVD to run iMovie nor the other way around. So, you can export your edited video directly to your camera from imovie (and it's up to you if you want to burn a dvd in iDVD after that).
    You will need a Digital Video Camcorder like this
    Sue
    iMac G5 1.25GB 20FP & iMac G4 800MB 17FP   Mac OS X (10.3.9)   Superdrives & 1 G RAM all around

  • What kind of problems are expected with an I Mac?

    what are the major problems associated with the hardware of I Mac? I am planning to buy an I Mac. please give advice.

    One of the biggest problems is that Apple, compared to Microsoft, discontinues support for an OS very quickly. E.g., Lion is supported right now, but once Mountain Lion is out quite soon, plus one more version a year after that -- Apple has gone to yearly upgrades -- no more security patches. That means, security-wise, you will be on your own and left to the wolves if you choose not to or can't upgrade. You may be quite content with your current OS and not want the "improvements" included in a succeeding one.
    In addition, Apple appears intent on locking up the Mac ecosystem/third party applications in a walled garden, the walls of which are growing higher all the time. The App Store, with most "apps," not Applications, at $10 a pop will discourage developers investing any serious time or money in developing programs. Serious support for the Desktop computer, which is being turned into an iOS like environment, is on the way out. It's a race to the bottom.
    Gatekeeper, which will appear with the release of Mountain Lion, will not assure any more safety, since Apple will never fully vet the code in all programs it give its seal of safety to. It will only create the illusion of safety. It will just raise the walls of that walled in garden so much higher, with no real benefit to users and it will discourage many serious developers.
    Message was edited by: WZZZ

  • What kind of Headphones are included with Zen Mik

    I was wondering about buying a Mp3-Player a long time, and finally decided that Zen Mikro would be the best choice to make.
    There is no information about the kind of headphones who are included in the package, and knowing the quality of the Headphones is essential for me, in fact.
    So, can anyone here tell me how the headphones are? Are they loud enough? Do they have a full-bass support? Does Zen Mikro have different sound-presets (bass/treble adjustion)?
    I am still walking around with an stone-old Sony Discman (unbreakable, perfect, but no Mp3 ) and I have old Sony-Headphones who are really superb, but they are also patched after several accidents.
    So, are the Creative-Headphones usefull, or do I have to buy some new ones from Sony?
    Thanks for every answer...

    With the Zen Micro, you get what Creative calls "High Fidelity Earphones." They are Creative earbuds that are pretty comfortable as far a earbuds go. The sound quality on the headphones are above better than average. The range on the phones are really good. You get most of the low bass beats and most of the very high tones. If you are an audiophile then you may not appreciate the quality of the earbuds. But for most they offer mediocre satisfaction.
    The Zen lets you choose from about half a dozen EAX EQ settings that lets you customize the sound of your audio. If none of those satisfy your tastes, then you can create your own custom setting by playing around with the different frequencies to tweak it to pure audio satisfaction. It can come in pretty handy sometimes. What also helps is the sound quality produced by the player itself is second to none.
    Hope this hel
    ps.
    [Zen Micro]

  • What does the error - file open with write privilege mean?

    When exporting an iMovie, I received the error message, file open with write privilege - what does that mean and what causes it?

    Hi
    Error -49
    Error -49  opWrErr  File already open with write permission
    Trash the preference files while application is NOT Running.
    Yours Bengt W

  • What kind of TV tuner cards with FMLE?

    3 computers are given.
    Into all PC machines 2 pieces would be needed  tv-tuner card analogous TV broadcasts would be sent on with the help of  which FMLE.
    What is analog TV  tuner card to buy this project?
    In all computers are 2 OSPREY type capture card too.
    Or...
    How I can  as what for all cheaply and simply if somebody has an idea different  analogous TV channel to give signs, let it write!
    Thank you!
    Excuse me my bad English!

    >>Is it true i only need a Raw format card and not mpeg card ?
    It take input only raw format. for more supported device info:
    http://www.adobe.com/products/flashmediaserver/flashmediaencoder/devicematrix.html

  • What kind of error it could be?

    init:
    deps-jar:
    Compiling 1 source file to C:\Documents and Settings\2z7\StrokeFill\build\classes
    C:\Documents and Settings\2z7\StrokeFill\src\ParseFile.java:82: incompatible types
    found   : int[]
    required: int
                       return  xy;
    1 error
    BUILD FAILED (total time: 0 seconds)
    import java.io.*;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.LinkedList;
    import java.util.ListIterator;
    import java.util.regex.*;
    import java.util.StringTokenizer;
    public class ParseFile
        private String Filename="newt3.newtmal.ps";
        private int x1, y1, x2, y2; // to plot lines from (x1,y1) to (x2,y2)
        private int xy[]= new int[205];
         public  int setxy()
              // parse a file to read line by line;           
                    File file = new File(Filename);
                           try
                                   BufferedReader br = new
                                            BufferedReader(new FileReader(Filename));
                                    String line;
                                    String s1 = "0.5 setlinewidth 0.0 setgray";
                                    String s2 = "stroke clear";
                                    String s3 = "closepath fill";
                                    String[] parts;
                                     while ((line = br.readLine()) != null )
                                        if (line.equals(s1))
                                                List<Integer> xList = new ArrayList<Integer>();
                                                List<Integer> yList = new ArrayList<Integer>();
                                                while ((line = br.readLine()) != null && !line.equals(s2))
                                                   parts = line.split(" ");
                                                    xList.add(Integer.parseInt(parts[0]));
                                                    yList.add(Integer.parseInt(parts[1]));
                                                Integer[] x = xList.toArray(new Integer[xList.size()]);
                                                Integer[] y = yList.toArray(new Integer[yList.size()]);
                                                // Plotting here using x and y arrays
                                                int m = x.length;
                                                for (int i = 0; i<m-1;i++)
                                                   xy[i]   = x.intValue();
    xy[i+m] = y[i].intValue();
    // to return these values to class LinesRectsCirclesJPanel
    // return xy;
    else if (line.split(" ").length == 8)
    List<Integer> xList = new ArrayList<Integer>();
    List<Integer> yList = new ArrayList<Integer>();
    while ((line = br.readLine()) != null && !line.equals(s2))
    parts = line.split(" ");
    xList.add(Integer.parseInt(parts[0]));
    yList.add(Integer.parseInt(parts[1]));
    Integer[] x = xList.toArray(new Integer[xList.size()]);
    Integer[] y = yList.toArray(new Integer[yList.size()]);
    // Plotting here using x and y arrays
    int m = x.length;
    xy[0] = Integer.parseInt(parts[5]);
    xy[m+1] = Integer.parseInt(parts[6]);
    for (int i = 0; i<m-1;i++)
    xy[i+1] = x[i].intValue();
    xy[i+m+1] = y[i].intValue();
    // to return these values to class LinesRectsCirclesJPanel
    catch (Exception exception) {
    exception.printStackTrace();
    return xy;

    of course it's wrong, how correct?Please just answer my question!!!
    Again: do you know the difference between an array of int's and a single int?
    And I know you copied the compiler error on the forum, but did you read it? If so, what did you not understand about it?

  • "Avoid reassigning parameters such as 'myString'" What kind of error is it?

    This is the method where the compiler gives me an error that I'm not able to understand...
         private String removeQuotes(String myString) {
              myString.trim();
              if (myString.startsWith("\"")) {
                   myString = myString.substring(1);
              if (myString.endsWith("\"")) {
                   myString = myString.substring(0, myString.length() - 1);
              return myString;
         }What's the problem? o_O
    Message was edited by:
    Lukyan

    Are you sure? I try to put the whole class (it's not huge):
    public class SearchResultFactory {
         private String[] header;
         private String          stringToParse;
         private Iterator     it;
         private IIssueRepositoryLocation location;
         public SearchResultFactory(Bugzilla220RepositorySession session) {
            super();
            location = session.getLocation();
         public void parse(InputStream stream, ISearchResultCollector sc) throws IOException {
              CSVParser parser = new CSVParser();
              BufferedReader reader = new BufferedReader(new InputStreamReader(stream));
              int i = 0;
              int rowLength = 0;
              // read first row (column description) and check length
              stringToParse = reader.readLine();
              if (stringToParse != null) {
                   it = parser.parse(stringToParse);
                   while (it.hasNext()) {
                        it.next();
                        rowLength++;
                   header = new String[rowLength];
                   it = parser.parse(stringToParse);
                   while (it.hasNext()) {
                        header[i] = removeQuotes((String) it.next());
                        i++;
                   String[] row;
                   stringToParse = reader.readLine();
                   while (stringToParse != null) {
                        it = parser.parse(stringToParse);
                        row = new String[rowLength];
                        i = 0;
                        while (it.hasNext()) {
                             row[i] = removeQuotes((String) it.next());
                             i++;
                        reportRow(sc, row);
                        stringToParse = reader.readLine();
         private void reportRow(ISearchResultCollector sc, String[] row) {
              BasicBugReport bug = new BasicBugReport();          
              bug.setId(Integer.parseInt(row[0]));
              bug.setRepositoryLocation(location);
              for (int i = 1; i < row.length; i++) {
                   IIssueAttributeDescriptor descr = BugzillaAttributes.getAttributeDescriptor(header);
                   if (descr != null && descr.getValueType() == TextAttribute.class) {
                        TextAttribute ta = new TextAttribute(row[i]);
                        bug.setAttribute(descr, ta);
                   if (descr != null && descr.getValueType() == UserAttribute.class) {
                        UserAttribute ua = new UserAttribute(new User(row[i], row[i]));
                        bug.setAttribute(descr, ua);
    if (descr == null) {
    IIssueFolder folder = getFolder(header[i], row[i]);
    if (folder != null) {
    bug.addParentIssueFolder(folder);
    bug.setState(ISyncState.PARTLY_SYNCHRONIZED);
              sc.reportResult(bug);
    private IIssueFolder getFolder(String ident, String name) {
    if (ident.equals("component")) {
    return new Component(name);
    if (ident.equals("product")) {
    return new Product(name);
    if (ident.equals("version")) {
    return new Version(name);
    if (ident.equals("target_milestone")) {
    return new TargetMilestone(name);
    return null;
         private String removeQuotes(String myString) {
              myString.trim();
              if (myString.startsWith("\"")) {
                   myString = myString.substring(1);
              if (myString.endsWith("\"")) {
                   myString = myString.substring(0, myString.length() - 1);
              return myString;
    However the compiler gives me the error on the method "removeQuotes"... so?

  • TS3694 What kind of error is (-1)?

    I recently found my old iPod Touch and I've been trying to update it to version 4.2 and an "unknown error" keeps occuring (-1).
    Does anyone have any information on how or what to do to fix this error. I've already updated my Mac and iTunes and the same error
    continues to occur.

    Error (-1)
    Try on another computer
    Also see:
    iOS: If you can't back up or restore from a backup in iTunes
    Then see:
    -1 error
    -1 error too
    If still problem  that means a hardware problem. In that case make an appointment at the Genius Bar of an Apple store.
    Apple Retail Store - Genius Bar

  • On what kind of errors we decide to perform tracing on particular servers or application?

    Hi,
    sapian,
         I want some list of errors or warnings which can be faced while executing the reports.
    Depending on the type of error on which server or application we need to perform tracing.Can you give me some list of error can be traced with respect to the servers or applications in CMC.
    Thanks in advance,
    Regards,
    Kishor

    Hi Kishor,
    To know on which server you need to enable tracing on , you will need to know the process flows of task in BI
    For example , if we get an error while scheduling a report  , we know that while scheduling only respective job servers are used to schedule reports , so we enable trace on report specifc job server.
    Regards,
    RVS

  • What kind of USB hubs work with the 2014 version of Time Capsule?

    The latest post I could find on USB hubs archived from 2012 and I'm wondering what today's information is. 
    I have a Sabrent HB-J3U7.  It is a 7 port USB 3.0 hub, two charging ports and five "normal".  I think I remember reading the charging ports can deliver about 2 amps each.  Obviously the Sabrent is a powered hub.  I plugged it into the TC's USB port and nothing.  No lights on hub indicating a connection at the device plug in ports. 
    I did a little experimenting and the hub works fine when hooked to my iMac (OS X 10.9.4).  The individual devices work fine when connected straight to the TC USB port.  All I can discern is that this hub is not compatible with TCs.  Too much power maybe?  The iMac has a USB 2.0 controller like the TC and the hub works there so I don't really understand the failure on the TC. 
    Then, for some reason, I tried the hub when it was disconnected from power and I could finally see the Sabrent hub connected devices (32GB USB 3.0 thumb drive and 2TB USB WD Passport - both formatted Extended Journaled).  So I plugged the Sabrent power up and it still worked.  That is until I tried to rename the TC hard drive through Airport Utility which required an update to TC.  TC wouldn't restart.  Just a solid amber, not even flashing amber.  I disconnected Sabrent and unplugged the TC and replugged and TC worked again but now I'm afraid of the Sabrent.
    Does anyone have ideas about what is going on?  Any help would be appreciated. 

    The hub is not compatible. It sounds like the unit is powering the link to the TC.. which would cause the TC to freeze up. You might need a special USB cable which has just data connection but no power.
    It is really hard to get info on hubs that work.. particularly because there are so many around and many are changed .. eg if you buy a belkin this year it fails when last years one worked.. that is because all the manufacturer is farmed out to various factories in China who use .. the cheapest parts available today to build them.. next week it could be different.
    The TC just doesn't have a huge amount of memory to store drivers for every USB under the sun. So some work some don't. The best I have found is the cheapest brand x USB2. I would not bother with USB3 since that chipset is even more unlikely to be supported than USB2 ones.
    I have tried to get people to add to a database.. not much so far.
    https://discussions.apple.com/thread/5912861?tstart=0
    Appreciate anyone who takes the time to add their experience.

  • What kind of error is this? Can't find answer

    I loaded up an H.264 file into FCP X. I did my edits and everything looks fine on my primary storyline, no issues with playback at all. Video played back with my edits. My edits are basic edits (cutting of clips). And I have background rendering set to on
    I go to share, export to compressor 4. In side of compressor I click on preview and I get this. Nothing is showing up in the preview.
    I found this strange but I went and did the encode anyway thinking maybe it just couldn't show me a preview. The video output was the same as the preview.
    I don't know what I am doing wrong as everything looks correct in FCP X. Not sure why Compressor 4 can't see the video

    export to compressor 4
    You mean Send to Compressor?
    Try trashing your project render files and don't re-render.
    Is playback set to proxy or original/optimized?

Maybe you are looking for