shithub: libvpx

Download patch

ref: 44078390ff47ee7084a327cddcacc9e6a594477a
parent: df008f66cb6e6a90440139ad150984b54b652146
parent: 67a996d68a2256546cf09d546487ed7a658da91d
author: James Zern <jzern@google.com>
date: Thu Feb 27 19:23:50 EST 2014

Merge "vpx_scale_rtcd.sh: fix conditional"

--- a/vpx_scale/vpx_scale_rtcd.sh
+++ b/vpx_scale/vpx_scale_rtcd.sh
@@ -6,7 +6,7 @@
 forward_decls vpx_scale_forward_decls
 
 # Scaler functions
-if [ "CONFIG_SPATIAL_RESAMPLING" != "yes" ]; then
+if [ "$CONFIG_SPATIAL_RESAMPLING" = "yes" ]; then
     prototype void vp8_horizontal_line_5_4_scale "const unsigned char *source, unsigned int source_width, unsigned char *dest, unsigned int dest_width"
     prototype void vp8_vertical_band_5_4_scale "unsigned char *source, unsigned int src_pitch, unsigned char *dest, unsigned int dest_pitch, unsigned int dest_width"
     prototype void vp8_horizontal_line_5_3_scale "const unsigned char *source, unsigned int source_width, unsigned char *dest, unsigned int dest_width"
--