vp8: change build_intra4x4_predictors() to use vpx_dsp.
I've added a few new functions (d45e, d63e, he, ve) to cover the filtered h/v 4x4 predictors that are vp8-specific, the "correct" d45 with the correctly filtered bottom-right pixel (as opposed to the unfiltered version in vp9), and the "broken" d63 with weirdly filtered bottom-right pixels (which is correctly filtered in vp9). There may be a minor performance impact on all systems because we have to do an extra copy of the Above pixel array to incorporate the topleft pixel in the same array (thus fitting the vpx_dsp API). In addition, armv6 will have a more serious performance impact b/c I removed the armv6/vp8-specific assembly. I'm not sure anyone cares... Change-Id: I7f9e5ebee11d8e21aca2cd517a69eefc181b2e86
Showing
- vp8/common/arm/armv6/intra4x4_predict_v6.asm 0 additions, 611 deletionsvp8/common/arm/armv6/intra4x4_predict_v6.asm
- vp8/common/reconintra.c 2 additions, 0 deletionsvp8/common/reconintra.c
- vp8/common/reconintra4x4.c 31 additions, 274 deletionsvp8/common/reconintra4x4.c
- vp8/common/reconintra4x4.h 9 additions, 1 deletionvp8/common/reconintra4x4.h
- vp8/common/rtcd_defs.pl 0 additions, 4 deletionsvp8/common/rtcd_defs.pl
- vp8/vp8_common.mk 0 additions, 1 deletionvp8/vp8_common.mk
- vpx_dsp/intrapred.c 77 additions, 0 deletionsvpx_dsp/intrapred.c
- vpx_dsp/vpx_dsp_rtcd_defs.pl 12 additions, 0 deletionsvpx_dsp/vpx_dsp_rtcd_defs.pl
Loading
Please register or sign in to comment