Commit ab1b3c57 authored by zuxy's avatar zuxy

Add missed call to ff_cavsdsp_init_3dnow() in dsputil_init_mmx()


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@12540 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent c24bac21
......@@ -1710,6 +1710,7 @@ PREFETCH(prefetch_3dnow, prefetch)
/* CAVS specific */
void ff_cavsdsp_init_mmx2(DSPContext* c, AVCodecContext *avctx);
void ff_cavsdsp_init_3dnow(DSPContext* c, AVCodecContext *avctx);
void ff_put_cavs_qpel8_mc00_mmx2(uint8_t *dst, uint8_t *src, int stride) {
put_pixels8_mmx(dst, src, stride, 8);
......@@ -2328,6 +2329,9 @@ void dsputil_init_mmx(DSPContext* c, AVCodecContext *avctx)
c->avg_h264_chroma_pixels_tab[0]= avg_h264_chroma_mc8_3dnow_rnd;
c->avg_h264_chroma_pixels_tab[1]= avg_h264_chroma_mc4_3dnow;
if (ENABLE_CAVS_DECODER)
ff_cavsdsp_init_3dnow(c, avctx);
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment