Changeset 846 for trunk/src/3rdparty/libjpeg/jdcoefct.c
- Timestamp:
- May 5, 2011, 5:36:53 AM (14 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:mergeinfo changed
/branches/vendor/nokia/qt/4.7.2 (added) merged: 845 /branches/vendor/nokia/qt/current merged: 844 /branches/vendor/nokia/qt/4.6.3 removed
- Property svn:mergeinfo changed
-
trunk/src/3rdparty/libjpeg/jdcoefct.c
r2 r846 188 188 : compptr->last_col_width; 189 189 output_ptr = output_buf[compptr->component_index] + 190 yoffset * compptr->DCT_ scaled_size;190 yoffset * compptr->DCT_v_scaled_size; 191 191 start_col = MCU_col_num * compptr->MCU_sample_width; 192 192 for (yindex = 0; yindex < compptr->MCU_height; yindex++) { … … 198 198 (JCOEFPTR) coef->MCU_buffer[blkn+xindex], 199 199 output_ptr, output_col); 200 output_col += compptr->DCT_ scaled_size;200 output_col += compptr->DCT_h_scaled_size; 201 201 } 202 202 } 203 203 blkn += compptr->MCU_width; 204 output_ptr += compptr->DCT_ scaled_size;204 output_ptr += compptr->DCT_v_scaled_size; 205 205 } 206 206 } … … 363 363 output_ptr, output_col); 364 364 buffer_ptr++; 365 output_col += compptr->DCT_ scaled_size;365 output_col += compptr->DCT_h_scaled_size; 366 366 } 367 output_ptr += compptr->DCT_ scaled_size;367 output_ptr += compptr->DCT_v_scaled_size; 368 368 } 369 369 } … … 655 655 DC7 = DC8; DC8 = DC9; 656 656 buffer_ptr++, prev_block_row++, next_block_row++; 657 output_col += compptr->DCT_ scaled_size;657 output_col += compptr->DCT_h_scaled_size; 658 658 } 659 output_ptr += compptr->DCT_ scaled_size;659 output_ptr += compptr->DCT_v_scaled_size; 660 660 } 661 661 }
Note:
See TracChangeset
for help on using the changeset viewer.