Browse Source

Fix compilation on PPC 470.

Originally committed as revision 22584 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.6
Carl Eugen Hoyos 16 years ago
parent
commit
9109cdca97
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/h264dsp.c

+ 1
- 1
libavcodec/h264dsp.c View File

@@ -315,6 +315,6 @@ void ff_h264dsp_init(H264DSPContext *c)
c->h264_loop_filter_strength= NULL;

if (ARCH_ARM) ff_h264dsp_init_arm(c);
if (ARCH_PPC) ff_h264dsp_init_ppc(c);
if (HAVE_ALTIVEC) ff_h264dsp_init_ppc(c);
if (HAVE_MMX) ff_h264dsp_init_x86(c);
}

Loading…
Cancel
Save