[svn] / trunk / xvidcore / src / image / x86_asm / interpolate8x8_3dn.asm Repository:
ViewVC logotype

Diff of /trunk/xvidcore/src/image/x86_asm/interpolate8x8_3dn.asm

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 262, Sun Jul 7 09:45:40 2002 UTC revision 1540, Sun Aug 29 10:02:38 2004 UTC
# Line 1  Line 1 
1  ;/**************************************************************************  ;/*****************************************************************************
2  ; *  ; *
3  ; *     XVID MPEG-4 VIDEO CODEC  ; *     XVID MPEG-4 VIDEO CODEC
4  ; *     3dnow 8x8 block-based halfpel interpolation  ; *  - 3dnow 8x8 block-based halfpel interpolation -
5    ; *
6    ; *  Copyright(C) 2001 Peter Ross <pross@xvid.org>
7    ; *               2002 Michael Militzer <isibaar@xvid.org>
8    ; *               2002 Pascal Massimino <skal@planet-d.net>
9  ; *  ; *
10  ; *     This program is free software; you can redistribute it and/or modify  ; *     This program is free software; you can redistribute it and/or modify
11  ; *     it under the terms of the GNU General Public License as published by  ; *     it under the terms of the GNU General Public License as published by
# Line 15  Line 19 
19  ; *  ; *
20  ; *     You should have received a copy of the GNU General Public License  ; *     You should have received a copy of the GNU General Public License
21  ; *     along with this program; if not, write to the Free Software  ; *     along with this program; if not, write to the Free Software
22  ; *     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  ; *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
 ; *  
 ; *************************************************************************/  
   
 ;/**************************************************************************  
 ; *  
 ; *     History:  
23  ; *  ; *
24  ; * 06.07.2002  applied Skal's XMM changes to the 3dnow code (Isibaar)  ; ****************************************************************************/
 ; * 04.02.2002  additional 3dnow optimizations (Isibaar)  
 ; *     22.12.2001      inital version; (c)2001 peter ross <pross@cs.rmit.edu.au>  
 ; *  
 ; *************************************************************************/  
   
25    
26  bits 32  BITS 32
27    
28  %macro cglobal 1  %macro cglobal 1
29          %ifdef PREFIX          %ifdef PREFIX
30                    %ifdef MARK_FUNCS
31                            global _%1:function %1.endfunc-%1
32                            %define %1 _%1:function %1.endfunc-%1
33                    %else
34                  global _%1                  global _%1
35                  %define %1 _%1                  %define %1 _%1
36                    %endif
37            %else
38                    %ifdef MARK_FUNCS
39                            global %1:function %1.endfunc-%1
40          %else          %else
41                  global %1                  global %1
42          %endif          %endif
43            %endif
44  %endmacro  %endmacro
45    
46  section .data  ;=============================================================================
47    ; Read Only data
48    ;=============================================================================
49    
50    %ifdef FORMAT_COFF
51    SECTION .rodata
52    %else
53    SECTION .rodata align=16
54    %endif
55    
56  align 16  ALIGN 16
57    mmx_one:
 mmx_one  
58  times 8 db 1  times 8 db 1
59    
60  section .text  ;=============================================================================
61    ; Code
62    ;=============================================================================
63    
64    SECTION .text
65    
66  cglobal interpolate8x8_halfpel_h_3dn  cglobal interpolate8x8_halfpel_h_3dn
67  cglobal interpolate8x8_halfpel_v_3dn  cglobal interpolate8x8_halfpel_v_3dn
68  cglobal interpolate8x8_halfpel_hv_3dn  cglobal interpolate8x8_halfpel_hv_3dn
69    
70    ;-----------------------------------------------------------------------------
 ;===========================================================================  
71  ;  ;
72  ; void interpolate8x8_halfpel_h_3dn(uint8_t * const dst,  ; void interpolate8x8_halfpel_h_3dn(uint8_t * const dst,
73  ;                                               const uint8_t * const src,  ;                                               const uint8_t * const src,
74  ;                                               const uint32_t stride,  ;                                               const uint32_t stride,
75  ;                                               const uint32_t rounding);  ;                                               const uint32_t rounding);
76  ;  ;
77  ;===========================================================================  ;-----------------------------------------------------------------------------
78    
79  %macro COPY_H_3DN_RND0 0  %macro COPY_H_3DN_RND0 0
80    movq mm0,  [eax]    movq mm0,  [eax]
# Line 95  Line 106 
106    movq [ecx+edx], mm1    movq [ecx+edx], mm1
107  %endmacro  %endmacro
108    
109  align 16  ALIGN 16
110  interpolate8x8_halfpel_h_3dn:  interpolate8x8_halfpel_h_3dn:
111    
112    mov eax, [esp+16] ; rounding    mov eax, [esp+16] ; rounding
# Line 126  Line 137 
137    lea ecx,[ecx+2*edx]    lea ecx,[ecx+2*edx]
138    COPY_H_3DN_RND1    COPY_H_3DN_RND1
139    ret    ret
140    .endfunc
141    
142    
143  ;===========================================================================  ;-----------------------------------------------------------------------------
144  ;  ;
145  ; void interpolate8x8_halfpel_v_3dn(uint8_t * const dst,  ; void interpolate8x8_halfpel_v_3dn(uint8_t * const dst,
146  ;                                               const uint8_t * const src,  ;                                               const uint8_t * const src,
147  ;                                               const uint32_t stride,  ;                                               const uint32_t stride,
148  ;                                               const uint32_t rounding);  ;                                               const uint32_t rounding);
149  ;  ;
150  ;===========================================================================  ;-----------------------------------------------------------------------------
151    
152  %macro COPY_V_3DN_RND0 0  %macro COPY_V_3DN_RND0 0
153    movq mm0,  [eax]    movq mm0,  [eax]
# Line 166  Line 178 
178    movq [ecx+edx], mm1    movq [ecx+edx], mm1
179  %endmacro  %endmacro
180    
181  align 16  ALIGN 16
182  interpolate8x8_halfpel_v_3dn:  interpolate8x8_halfpel_v_3dn:
183    
184    mov eax, [esp+16] ; rounding    mov eax, [esp+16] ; rounding
# Line 202  Line 214 
214    lea ecx,[ecx+2*edx]    lea ecx,[ecx+2*edx]
215    COPY_V_3DN_RND1    COPY_V_3DN_RND1
216    ret    ret
217    .endfunc
218    
219    
220  ;===========================================================================  ;-----------------------------------------------------------------------------
221  ;  ;
222  ; void interpolate8x8_halfpel_hv_3dn(uint8_t * const dst,  ; void interpolate8x8_halfpel_hv_3dn(uint8_t * const dst,
223  ;                                               const uint8_t * const src,  ;                                               const uint8_t * const src,
# Line 212  Line 225 
225  ;                                               const uint32_t rounding);  ;                                               const uint32_t rounding);
226  ;  ;
227  ;  ;
228  ;===========================================================================  ;-----------------------------------------------------------------------------
229    
230  ; The trick is to correct the result of 'pavgusb' with some combination of the  ; The trick is to correct the result of 'pavgusb' with some combination of the
231  ; lsb's of the 4 input values i,j,k,l, and their intermediate 'pavgusb' (s and t).  ; lsb's of the 4 input values i,j,k,l, and their intermediate 'pavgusb' (s and t).
# Line 304  Line 317 
317      movq [ecx], mm0      movq [ecx], mm0
318  %endmacro  %endmacro
319    
320  align 16  ALIGN 16
321  interpolate8x8_halfpel_hv_3dn  interpolate8x8_halfpel_hv_3dn
322    mov eax, [esp+16] ; rounding    mov eax, [esp+16] ; rounding
323    mov ecx, [esp+ 4] ; Dst    mov ecx, [esp+ 4] ; Dst
# Line 341  Line 354 
354    add ecx, edx    add ecx, edx
355    COPY_HV_3DN_RND1    COPY_HV_3DN_RND1
356    ret    ret
357    .endfunc
358    

Legend:
Removed from v.262  
changed lines
  Added in v.1540

No admin address has been configured
ViewVC Help
Powered by ViewVC 1.0.4