~ubuntu-branches/ubuntu/trusty/gavl/trusty

« back to all changes in this revision

Viewing changes to gavl/mmx/scale_x_mmx.c

  • Committer: Bazaar Package Importer
  • Author(s): Romain Beauxis
  • Date: 2009-01-17 20:38:33 UTC
  • mfrom: (1.1.3 upstream) (4.1.1 squeeze)
  • Revision ID: james.westby@ubuntu.com-20090117203833-t8fq1e1jdquyelmy
Tags: 1.1.0-2
Fixed debian/copyright 

Show diffs side-by-side

added added

removed removed

Lines of Context:
186
186
    }
187
187
  ctx->need_emms = 1;
188
188
 
 
189
#if 1
189
190
  imax = ctx->dst_size % 4;
190
 
  //  imax = ctx->dst_size;
191
 
  
192
191
  for(i = 0; i < imax; i++)
193
192
    {
194
193
    src = (src_start + ctx->table_h.pixels[index].index);
197
196
    dst++;
198
197
    index++;
199
198
    }
200
 
  
 
199
#endif
201
200
  }
202
201
 
203
202