diff options
author | Juanjo <pulento@users.sourceforge.net> | 2002-05-02 04:39:45 +0000 |
---|---|---|
committer | Juanjo <pulento@users.sourceforge.net> | 2002-05-02 04:39:45 +0000 |
commit | ef5b1b5a7ee2d4bce47382e74fe4c88d207c641a (patch) | |
tree | f732b2cf29ab34f4115e94d82a6a21aabfe73066 /libavcodec/i386/mpegvideo_mmx.c | |
parent | 95c79a24e5429c510a7e17e84fc02b452060578c (diff) | |
download | ffmpeg-ef5b1b5a7ee2d4bce47382e74fe4c88d207c641a.tar.gz |
- Advanced Intra Coding (AIC) support for H.263+ encoder, just DC by now.
- Bug fix H.263+ AIC tables.
- Warning fixes.
Originally committed as revision 431 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/i386/mpegvideo_mmx.c')
-rw-r--r-- | libavcodec/i386/mpegvideo_mmx.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/libavcodec/i386/mpegvideo_mmx.c b/libavcodec/i386/mpegvideo_mmx.c index ebb5f36773..882272988a 100644 --- a/libavcodec/i386/mpegvideo_mmx.c +++ b/libavcodec/i386/mpegvideo_mmx.c @@ -557,12 +557,12 @@ void MPV_common_init_mmx(MpegEncContext *s) s->dct_unquantize_mpeg1 = dct_unquantize_mpeg1_mmx; s->dct_unquantize_mpeg2 = dct_unquantize_mpeg2_mmx; - draw_edges = draw_edges_mmx; + draw_edges = draw_edges_mmx; - if(mm_flags & MM_MMXEXT){ - dct_quantize= dct_quantize_MMX2; - }else{ - dct_quantize= dct_quantize_MMX; - } + if(mm_flags & MM_MMXEXT){ + dct_quantize= dct_quantize_MMX2; + } else { + dct_quantize= dct_quantize_MMX; + } } } |