summaryrefslogtreecommitdiff
path: root/libavcodec
diff options
context:
space:
mode:
authorDavid Conrad <lessen42@gmail.com>2008-10-19 04:43:35 +0000
committerDavid Conrad <lessen42@gmail.com>2008-10-19 04:43:35 +0000
commitca4a4ac1b3093d255f91b418abb178cdd67d3e95 (patch)
treedc52a28e3121042a590a9337a08da0940cfc6f8f /libavcodec
parentdaa1ea049a9445b7bed03963cb789497065dd1eb (diff)
Combine non-bitexact sections
Originally committed as revision 15643 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/i386/dsputil_mmx.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/libavcodec/i386/dsputil_mmx.c b/libavcodec/i386/dsputil_mmx.c
index 08892d257f..ff6fd469bc 100644
--- a/libavcodec/i386/dsputil_mmx.c
+++ b/libavcodec/i386/dsputil_mmx.c
@@ -2631,12 +2631,11 @@ void dsputil_init_mmx(DSPContext* c, AVCodecContext *avctx)
c->put_no_rnd_pixels_tab[1][2] = put_no_rnd_pixels8_y2_mmx2;
c->avg_pixels_tab[0][3] = avg_pixels16_xy2_mmx2;
c->avg_pixels_tab[1][3] = avg_pixels8_xy2_mmx2;
- }
- if ((ENABLE_VP3_DECODER || ENABLE_THEORA_DECODER) &&
- !(avctx->flags & CODEC_FLAG_BITEXACT)) {
+ if (ENABLE_VP3_DECODER || ENABLE_THEORA_DECODER) {
c->vp3_v_loop_filter= ff_vp3_v_loop_filter_mmx2;
c->vp3_h_loop_filter= ff_vp3_h_loop_filter_mmx2;
+ }
}
#define SET_QPEL_FUNCS(PFX, IDX, SIZE, CPU) \