mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-05 06:58:56 +00:00
gst/level/gstlevel.c: Use guint8 * instead of gpointer then vs6 can build in_data += (filter->width / 8).
Original commit message from CVS: * gst/level/gstlevel.c: (gst_level_transform_ip): Use guint8 * instead of gpointer then vs6 can build in_data += (filter->width / 8).
This commit is contained in:
parent
7ef62aac45
commit
603656d1bf
2 changed files with 6 additions and 1 deletions
|
@ -97,6 +97,11 @@
|
|||
|
||||
* gst/rtsp/rtsptransport.c:
|
||||
UDP MCAST is actually the default for RTP/AVP.
|
||||
2007-05-13 Sebastien Moutte <sebastien@moutte.net>
|
||||
|
||||
* gst/level/gstlevel.c: (gst_level_transform_ip):
|
||||
Use guint8 * instead of gpointer then vs6 can build
|
||||
in_data += (filter->width / 8).
|
||||
|
||||
2007-05-11 Zaheer Abbas Merali <<zaheerabbas at merali dot org>>
|
||||
|
||||
|
|
|
@ -534,7 +534,7 @@ static GstFlowReturn
|
|||
gst_level_transform_ip (GstBaseTransform * trans, GstBuffer * in)
|
||||
{
|
||||
GstLevel *filter;
|
||||
gpointer in_data;
|
||||
guint8 *in_data;
|
||||
double CS = 0.0;
|
||||
guint num_frames = 0;
|
||||
guint num_int_samples = 0; /* number of interleaved samples
|
||||
|
|
Loading…
Reference in a new issue