Browse Source

missaliged clear_blocks() and h264 not complied but referenced fix patch by (Roine Gustafsson <roine at users dot sourceforge dot net>) and me

Originally committed as revision 3584 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Roine Gustafsson Michael Niedermayer 20 years ago
parent
commit
b1d041c15c
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      libavcodec/ppc/dsputil_ppc.c

+ 2
- 2
libavcodec/ppc/dsputil_ppc.c View File

@@ -141,7 +141,7 @@ POWERPC_PERF_START_COUNT(powerpc_clear_blocks_dcbz32, 1);
((unsigned long*)blocks)[3] = 0L;
i += 16;
}
for ( ; i < sizeof(DCTELEM)*6*64 ; i += 32) {
for ( ; i < sizeof(DCTELEM)*6*64-31 ; i += 32) {
#ifndef __MWERKS__
asm volatile("dcbz %0,%1" : : "b" (blocks), "r" (i) : "memory");
#else
@@ -255,9 +255,9 @@ void dsputil_init_ppc(DSPContext* c, AVCodecContext *avctx)
break;
}

#ifdef HAVE_ALTIVEC
dsputil_h264_init_ppc(c, avctx);
#ifdef HAVE_ALTIVEC
if (has_altivec()) {
mm_flags |= MM_ALTIVEC;


Loading…
Cancel
Save