diff options
author | Loren Merritt <lorenm@u.washington.edu> | 2006-08-28 09:33:01 +0000 |
---|---|---|
committer | Loren Merritt <lorenm@u.washington.edu> | 2006-08-28 09:33:01 +0000 |
commit | 3e20143ee7b2e3b9b11eaaa4bda971281ae0efbf (patch) | |
tree | 4c991508d67a3b40fb302a0ffb842c7bb32fc0c6 /libavcodec/dsputil.c | |
parent | 001299bfe8142740d4260d5443fa91eb951dbdcb (diff) | |
download | ffmpeg-3e20143ee7b2e3b9b11eaaa4bda971281ae0efbf.tar.gz |
mmx implementation of deblocking strength decision.
2-3% faster h264.
Originally committed as revision 6113 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/dsputil.c')
-rw-r--r-- | libavcodec/dsputil.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/dsputil.c b/libavcodec/dsputil.c index bba233b1c6..22dbfc01e8 100644 --- a/libavcodec/dsputil.c +++ b/libavcodec/dsputil.c @@ -4111,6 +4111,7 @@ void dsputil_init(DSPContext* c, AVCodecContext *avctx) c->h264_h_loop_filter_chroma= h264_h_loop_filter_chroma_c; c->h264_v_loop_filter_chroma_intra= h264_v_loop_filter_chroma_intra_c; c->h264_h_loop_filter_chroma_intra= h264_h_loop_filter_chroma_intra_c; + c->h264_loop_filter_strength= NULL; c->h263_h_loop_filter= h263_h_loop_filter_c; c->h263_v_loop_filter= h263_v_loop_filter_c; |