提交 34dfe896 编写于 作者: Z Zdenek Kabelac

* quick fix for bit exact setting

  (FIXME - add this into context flags)

Originally committed as revision 1200 to svn://svn.ffmpeg.org/ffmpeg/trunk
上级 47837688
......@@ -1792,6 +1792,12 @@ void dsputil_init(DSPContext* c, unsigned mask)
#ifdef HAVE_MMX
dsputil_init_mmx(c, mask);
if (ff_bit_exact)
{
/* FIXME - AVCodec context should have flag for bitexact match */
/* fprintf(stderr, "\n\n\nff_bit_exact %d\n\n\n\n", ff_bit_exact); */
dsputil_set_bit_exact_mmx(c, mask);
}
#endif
#ifdef ARCH_ARMV4L
dsputil_init_armv4l(c, mask);
......@@ -1817,7 +1823,7 @@ void avcodec_set_bit_exact(void)
{
ff_bit_exact=1;
#ifdef HAVE_MMX
#warning FIXME - set_bit_exact
// FIXME - better set_bit_exact
// dsputil_set_bit_exact_mmx();
#endif
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册