ext/libpostproc/gstpostproc.c (gst_post_proc_transform_ip): Fix some mistyping when...
authorAndy Wingo <wingo@pobox.com>
Tue, 15 Apr 2008 09:11:52 +0000 (09:11 +0000)
committerAndy Wingo <wingo@pobox.com>
Tue, 15 Apr 2008 09:11:52 +0000 (09:11 +0000)
Original commit message from CVS:
2008-04-15  Andy Wingo  <wingo@pobox.com>

* ext/libpostproc/gstpostproc.c (gst_post_proc_transform_ip): Fix
some mistyping when calling pp_postprocess.

ChangeLog
ext/libpostproc/gstpostproc.c

index 914a891..1d2495a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2008-04-15  Andy Wingo  <wingo@pobox.com>
+
+       * ext/libpostproc/gstpostproc.c (gst_post_proc_transform_ip): Fix
+       some mistyping when calling pp_postprocess.
+
 2008-04-14  Andy Wingo  <wingo@pobox.com>
 
        * autogen.sh:
index 9ad0af6..64632d4 100644 (file)
@@ -564,7 +564,7 @@ gst_post_proc_transform_ip (GstBaseTransform * btrans, GstBuffer * in)
   GST_DEBUG_OBJECT (postproc, "calling pp_postprocess, width:%d, height:%d",
       postproc->width, postproc->height);
 
-  pp_postprocess ((const guint8**) inplane, (const int*) stride, outplane, stride,
+  pp_postprocess (inplane, stride, outplane, stride,
       postproc->width, postproc->height, (int8_t*) "", 0,
       postproc->mode, postproc->context, 0);