Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 144702
Collapse All | Expand All

(-)mlt-0.2.2.orig/src/modules/motion_est/filter_motion_est.c (-3 / +3 lines)
Lines 34-40 Link Here
34
#include <sys/time.h>
34
#include <sys/time.h>
35
#include <unistd.h>
35
#include <unistd.h>
36
36
37
#ifndef __DARWIN__
37
#ifndef __PPC__
38
#include "sad_sse.h"
38
#include "sad_sse.h"
39
#endif
39
#endif
40
40
Lines 612-618 Link Here
612
	 } /* End column loop */
612
	 } /* End column loop */
613
	} /* End row loop */
613
	} /* End row loop */
614
614
615
#ifndef __DARWIN__
615
#ifndef __PPC__
616
	asm volatile ( "emms" );
616
	asm volatile ( "emms" );
617
#endif
617
#endif
618
618
Lines 656-662 Link Here
656
static void init_optimizations( struct motion_est_context_s *c )
656
static void init_optimizations( struct motion_est_context_s *c )
657
{
657
{
658
	switch(c->mb_w){
658
	switch(c->mb_w){
659
#ifndef __DARWIN__
659
#ifndef __PPC__
660
		case 4:  if(c->mb_h == 4)	c->compare_optimized = sad_sse_422_luma_4x4;
660
		case 4:  if(c->mb_h == 4)	c->compare_optimized = sad_sse_422_luma_4x4;
661
			 else				c->compare_optimized = sad_sse_422_luma_4w;
661
			 else				c->compare_optimized = sad_sse_422_luma_4w;
662
			 break;
662
			 break;

Return to bug 144702