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

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.
This commit is contained in:
Andy Wingo 2008-04-15 09:11:52 +00:00
parent a93257590c
commit 223ea0d623
2 changed files with 6 additions and 1 deletions

View file

@ -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:

View 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);