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

« back to all changes in this revision

Viewing changes to filter/tomsmocomp/SearchLoopOddA.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 1 pixel 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("-2(%%edi)", "2(%%esi, %%ecx, 2)")  // up left, down right
 
7
        MERGE4PIXavg("2(%%edi)", "-2(%%esi, %%ecx, 2)")  // up right, down left
 
8
        MERGE4PIXavg("-2(%%edi, %%ecx, 2)", "2(%%esi)")   // down left, up right
 
9
        MERGE4PIXavg("2(%%edi, %%ecx, 2)", "-2(%%esi)")   // down right, up left   
 
10
#include "SearchLoopOddA2.inc"