Skip to content

Commit

Permalink
lavc/arm: Use the neon vertical chroma loop filter also for H.264 4:2:2.
Browse files Browse the repository at this point in the history
  • Loading branch information
cehoyos committed Jan 31, 2015
1 parent 4faea46 commit f9f9ae1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libavcodec/arm/h264dsp_init_arm.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down

0 comments on commit f9f9ae1

Please sign in to comment.