Added configurable boundary specifier, added the value as a
caps field as well.
+2004-06-02 Zaheer Abbas Merali <zaheerabbas@merali.org>
+
+ * gst/tcp/gsttcp.c:
+ * gst/tcp/gsttcpclientsrc.c:
+ * gst/tcp/gsttcpclientsrc.h:
+ * gst/tcp/gsttcpserversrc.c:
+ - portability fix, to compile on OSX
+ (fixes #143146)
+
+ * sys/osxaudio/gstosxaudioelement.c:
+ * sys/osxaudio/gstosxaudiosink.c:
+ * sys/osxaudio/gstosxaudiosrc.c:
+ - compilation warnings on OSX
+ (fixes #143153)
+
+2004-06-02 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
+
+ * ext/vorbis/vorbisdec.c : sign warning fixes
+
+ * gst-libs/gst/mixer/mixertrack.c : forgoten include
+ to define newly used G_MAXINT32, bad owen, bad
+
2004-06-01 Christophe Fergeau <teuf@gnome.org>
* ext/flac/gstflactag.c: strip ending framing bit from vorbiscomment
static void
gst_osxaudioelement_dispose (GObject * object)
{
- GstOsxAudioElement *osxaudio = (GstOsxAudioElement *) object;
+ /* GstOsxAudioElement *osxaudio = (GstOsxAudioElement *) object; */
G_OBJECT_CLASS (parent_class)->dispose (object);
}
static gboolean
gst_osxaudioelement_open_audio (GstOsxAudioElement * osxaudio, gboolean input)
{
- gint caps;
int i;
OSErr status;
OSStatus status;
int nDevices;
UInt32 propertySize;
- int deviceid;
AudioDeviceID *devids;
int i;
static void
gst_osxaudiosink_dispose (GObject * object)
{
- GstOsxAudioSink *osxaudiosink = (GstOsxAudioSink *) object;
+ /* GstOsxAudioSink *osxaudiosink = (GstOsxAudioSink *) object; */
/*gst_object_unparent (GST_OBJECT (osxaudiosink->provided_clock)); */
guchar *data;
guint to_write;
gint amount_written;
- gint delay;
/* this has to be an audio buffer */
osxaudiosink = GST_OSXAUDIOSINK (gst_pad_get_parent (pad));
static void
gst_osxaudiosrc_dispose (GObject * object)
{
- GstOsxAudioSrc *osxaudiosrc = (GstOsxAudioSrc *) object;
+ /* GstOsxAudioSrc *osxaudiosrc = (GstOsxAudioSrc *) object; */
G_OBJECT_CLASS (parent_class)->dispose (object);
}
buf = gst_buffer_new_and_alloc ((GST_OSXAUDIOELEMENT (src))->buffer_len);
- readbytes = read_buffer (src, (char *) GST_BUFFER_DATA (buf));
+ readbytes =
+ read_buffer (GST_OSXAUDIOELEMENT (src), (char *) GST_BUFFER_DATA (buf));
if (readbytes < 0) {
gst_buffer_unref (buf);