~ubuntu-branches/ubuntu/intrepid/transcode/intrepid-proposed

« back to all changes in this revision

Viewing changes to filter/tomsmocomp/SearchLoopOddA6.inc

  • Committer: Bazaar Package Importer
  • Author(s): Daniel T Chen
  • Date: 2005-10-10 19:12:47 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20051010191247-uq4j6t947df71v7m
Tags: 2:1.0.1-0.0ubuntu1
* New upstream release.
* debian/:
  + Remove 03_rescale.c and 04_average.c dpatches, applied upstream.
  + Force amd64 to link against the correct _pic libs, fixing FTBFS.
  + Disable mjpegtools support on ppc until post-Breezy (FTBFS).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// -*- c++ -*-
 
2
 
 
3
// Searches 3 pixels to the left and right, in both the old
 
4
//  and new fields, but takes averages. These are odd
 
5
// pixel addresses. Any chroma match will not be used. (YUY2)
 
6
        MERGE4PIXavg("-6(%%edi)", "6(%%esi, %%ecx, 2)")  // up left, down right
 
7
        MERGE4PIXavg("6(%%edi)", "-6(%%esi, %%ecx, 2)")  // up right, down left
 
8
        MERGE4PIXavg("-6(%%edi, %%ecx)", "6(%%esi, %%ecx)") // left, right
 
9
        MERGE4PIXavg("6(%%edi, %%ecx)", "-6(%%esi, %%ecx)") // right, left
 
10
        MERGE4PIXavg("-6(%%edi, %%ecx, 2)", "6(%%esi)")   // down left, up right
 
11
        MERGE4PIXavg("6(%%edi, %%ecx, 2)", "-6(%%esi)")   // down right, up left