[FFmpeg-cvslog] lavc/arm: Use the neon vertical chroma loop filter also for H.264 4:2:2.

Carl Eugen Hoyos git at videolan.org
Sat Jan 31 14:35:44 CET 2015


ffmpeg | branch: master | Carl Eugen Hoyos <cehoyos at ag.or.at> | Sat Jan 31 10:05:24 2015 +0100| [f9f9ae1b77e4fb1bffa6b23be7bd20e514b8ba7b] | committer: Carl Eugen Hoyos

lavc/arm: Use the neon vertical chroma loop filter also for H.264 4:2:2.

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=f9f9ae1b77e4fb1bffa6b23be7bd20e514b8ba7b
---

 libavcodec/arm/h264dsp_init_arm.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavcodec/arm/h264dsp_init_arm.c b/libavcodec/arm/h264dsp_init_arm.c
index 88dfd75..90144d0 100644
--- a/libavcodec/arm/h264dsp_init_arm.c
+++ b/libavcodec/arm/h264dsp_init_arm.c
@@ -76,8 +76,8 @@ static av_cold void h264dsp_init_neon(H264DSPContext *c, const int bit_depth,
     if (bit_depth == 8) {
         c->h264_v_loop_filter_luma   = ff_h264_v_loop_filter_luma_neon;
         c->h264_h_loop_filter_luma   = ff_h264_h_loop_filter_luma_neon;
-        if(chroma_format_idc == 1){
         c->h264_v_loop_filter_chroma = ff_h264_v_loop_filter_chroma_neon;
+        if(chroma_format_idc == 1){
         c->h264_h_loop_filter_chroma = ff_h264_h_loop_filter_chroma_neon;
         }
 



More information about the ffmpeg-cvslog mailing list