~ubuntu-branches/ubuntu/maverick/zapping/maverick

« back to all changes in this revision

Viewing changes to plugins/deinterlace/DI_TomsMoComp/SearchLoopEdgeAH8.inc

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Holbach
  • Date: 2005-03-08 23:19:08 UTC
  • mfrom: (2.1.1 sarge)
  • Revision ID: james.westby@ubuntu.com-20050308231908-oip7rfv6lcmo8c0e
Tags: 0.9.2-2ubuntu1
Rebuilt for Python transition (2.3 -> 2.4)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// Searches 4pixel to the left and right, in both the old
 
2
// and new fields, but takes half pel averages. These are even
 
3
// pixel addresses. Chroma match will be used. (YUY2)
 
4
 
 
5
        MERGE4PIXavgH(edi-8, edi+ecx-8, esi+ecx+8, esi+2*ecx+8)  // up left, down right
 
6
        MERGE4PIXavgH(edi+8, edi+ecx+8, esi+ecx-8, esi+2*ecx-8)  // up right, down left
 
7
        MERGE4PIXavgH(edi+2*ecx-8, edi+ecx-8, esi+ecx+8, esi+8)  // down left, up right
 
8
        MERGE4PIXavgH(edi+2*ecx+8, edi+ecx+8, esi+ecx-8, esi-8)  // down right, up left   
 
9