diff options
author | Ronald S. Bultje <rsbultje@gmail.com> | 2011-10-12 08:55:37 -0700 |
---|---|---|
committer | Ronald S. Bultje <rsbultje@gmail.com> | 2011-10-21 01:00:45 -0700 |
commit | 229d263cc914b5396847f7249fdda2e6ded9ec1b (patch) | |
tree | d99bc89d46558e9fb103a2ff9b39adf135cf3d3c /libavcodec/x86 | |
parent | 76741b0e56bfbc74cfa32ff59e15cf420463569b (diff) | |
download | ffmpeg-229d263cc914b5396847f7249fdda2e6ded9ec1b.tar.gz |
Support for lossless and inter H264 4:2:2.
Diffstat (limited to 'libavcodec/x86')
-rw-r--r-- | libavcodec/x86/h264dsp_mmx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/x86/h264dsp_mmx.c b/libavcodec/x86/h264dsp_mmx.c index 910ad8401f..06ee7cad43 100644 --- a/libavcodec/x86/h264dsp_mmx.c +++ b/libavcodec/x86/h264dsp_mmx.c @@ -354,7 +354,7 @@ void ff_h264dsp_init_x86(H264DSPContext *c, const int bit_depth, const int chrom { int mm_flags = av_get_cpu_flags(); - if (mm_flags & AV_CPU_FLAG_MMX2) { + if (chroma_format_idc == 1 && mm_flags & AV_CPU_FLAG_MMX2) { c->h264_loop_filter_strength= h264_loop_filter_strength_mmx2; } |