]> granicus.if.org Git - libvpx/commitdiff
vp9_loopfilter: remove uv function typedef
authorJames Zern <jzern@google.com>
Sun, 14 Jul 2013 01:38:28 +0000 (18:38 -0700)
committerJames Zern <jzern@google.com>
Sun, 14 Jul 2013 01:38:28 +0000 (18:38 -0700)
loop_filter_uvfunction is unused

Change-Id: I37eb3559e9eb2808f1f29dfea429441c94c9df2a

vp9/common/vp9_loopfilter.h
vp9/common/x86/vp9_loopfilter_intrin_sse2.c

index 093f89360b24565fb8987dab9c4b8e641e71cdbf..e74362a5b1984bd980ebd68bd129004d3687aea3 100644 (file)
@@ -56,12 +56,6 @@ struct loop_filter_info {
 #include "x86/vp9_loopfilter_x86.h"
 #endif
 
-typedef void loop_filter_uvfunction(uint8_t *src, int pitch,
-                                    const uint8_t *blimit,
-                                    const uint8_t *limit,
-                                    const uint8_t *thresh,
-                                    uint8_t *v);
-
 /* assorted loopfilter functions which get used elsewhere */
 struct VP9Common;
 struct macroblockd;
index a0dce5ece470e1d1a9fa8b7be3fccd3a9860d0e7..429bf408a18bb8c6f4bda6a4074ca261828d1aa5 100644 (file)
@@ -15,9 +15,6 @@
 prototype_loopfilter(vp9_loop_filter_vertical_edge_sse2);
 prototype_loopfilter(vp9_loop_filter_horizontal_edge_sse2);
 
-extern loop_filter_uvfunction vp9_loop_filter_horizontal_edge_uv_sse2;
-extern loop_filter_uvfunction vp9_loop_filter_vertical_edge_uv_sse2;
-
 void vp9_mb_lpf_horizontal_edge_w_sse2_8(unsigned char *s,
                                          int p,
                                          const unsigned char *_blimit,