[svn] / trunk / xvidcore / src / decoder.c Repository:
ViewVC logotype

Diff of /trunk/xvidcore/src/decoder.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1652, Thu Nov 3 05:44:07 2005 UTC revision 1653, Tue Nov 22 10:23:01 2005 UTC
# Line 20  Line 20 
20   *  along with this program ; if not, write to the Free Software   *  along with this program ; if not, write to the Free Software
21   *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA   *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
22   *   *
23   * $Id: decoder.c,v 1.74 2005-09-20 11:54:11 suxen_drol Exp $   * $Id: decoder.c,v 1.75 2005-11-22 10:23:01 suxen_drol Exp $
24   *   *
25   ****************************************************************************/   ****************************************************************************/
26    
# Line 316  Line 316 
316      stop_iquant_timer();      stop_iquant_timer();
317    
318      start_timer();      start_timer();
319      idct(&data[i * 64]);      idct((short * const)&data[i * 64]);
320      stop_idct_timer();      stop_idct_timer();
321    
322    }    }
# Line 406  Line 406 
406    
407        /* iDCT */        /* iDCT */
408        start_timer();        start_timer();
409        idct(&data[0]);        idct((short * const)&data[0]);
410        stop_idct_timer();        stop_idct_timer();
411    
412        /* Add this residual to the predicted block */        /* Add this residual to the predicted block */
# Line 1485  Line 1485 
1485  }  }
1486    
1487  /* perform post processing if necessary, and output the image */  /* perform post processing if necessary, and output the image */
1488  void decoder_output(DECODER * dec, IMAGE * img, MACROBLOCK * mbs,  static void decoder_output(DECODER * dec, IMAGE * img, MACROBLOCK * mbs,
1489            xvid_dec_frame_t * frame, xvid_dec_stats_t * stats,            xvid_dec_frame_t * frame, xvid_dec_stats_t * stats,
1490            int coding_type, int quant)            int coding_type, int quant)
1491  {  {

Legend:
Removed from v.1652  
changed lines
  Added in v.1653

No admin address has been configured
ViewVC Help
Powered by ViewVC 1.0.4