mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 22:36:33 +00:00
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:
parent
a93257590c
commit
223ea0d623
2 changed files with 6 additions and 1 deletions
|
@ -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:
|
||||
|
|
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in a new issue