shithub: openh264

Download patch

ref: 4d120781c1487e4f0fed543a444a07abe2cc832a
parent: 43bc9d7c07854fc6d5846dbe89a2d8dac4890bf8
author: Martin Storsjö <martin@martin.st>
date: Fri Mar 14 10:30:47 EDT 2014

Fix the indentation of some nasm macros

--- a/codec/encoder/core/asm/dct.asm
+++ b/codec/encoder/core/asm/dct.asm
@@ -445,12 +445,12 @@
    ; pop		ebx
     ret
 
-  %macro SSE2_StoreDiff4x8p 8
+%macro SSE2_StoreDiff4x8p 8
    	SSE2_StoreDiff8p    %1, %3, %4, [%5],			[%6]
 	SSE2_StoreDiff8p    %1, %3, %4, [%5 + %7],		[%6 + %8]
 	SSE2_StoreDiff8p    %2, %3, %4, [%5 + 8],		[%6 + 8]
 	SSE2_StoreDiff8p    %2, %3, %4, [%5 + %7 + 8],	[%6 + %8 + 8]
- %endmacro
+%endmacro
 
  ;***********************************************************************
 ; void WelsIDctRecI16x16Dc_sse2(uint8_t *rec, int32_t stride, uint8_t *pred, int32_t pred_stride, int16_t *dct_dc)
@@ -528,7 +528,7 @@
 	movdqa	%4, %1
 	psubd	%4, %2
 %endmacro
- %macro		SSE2_Load4Col	5
+%macro		SSE2_Load4Col	5
 	movsx		r2,		WORD[%5]
  	movd		%1,			r2d
  	movsx		r2,		WORD[%5 + 0x20]
@@ -540,7 +540,7 @@
  	movd		%4,			r2d
 	punpckldq	%3,			%4
 	punpcklqdq	%1,			%3
- %endmacro
+%endmacro
 
 ;***********************************************************************
 ;void WelsHadamardT4Dc_sse2( int16_t *luma_dc, int16_t *pDct)