summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRonald S. Bultje <rbultje@ronald.bitfreak.net>2005-04-22 14:37:50 +0000
committerRonald S. Bultje <rbultje@ronald.bitfreak.net>2005-04-22 14:37:50 +0000
commit2d73aaaa01c8f2aab3025ae11f368a5346f3920f (patch)
tree46c40fc428ef1ec57f91939a88a5b8ff699cdafa
parent38a7b96780197bf6558ce1f85b91bf004f710785 (diff)
downloadgst-plugins-bad-2d73aaaa01c8f2aab3025ae11f368a5346f3920f.tar.gz
gst-plugins-bad-2d73aaaa01c8f2aab3025ae11f368a5346f3920f.tar.bz2
gst-plugins-bad-2d73aaaa01c8f2aab3025ae11f368a5346f3920f.zip
gst/: More signed/unsigned fixes for GCC4.
Original commit message from CVS: * gst/adder/gstadder.h: * gst/dvdlpcmdec/gstdvdlpcmdec.h: * gst/passthrough/gstpassthrough.h: * gst/playondemand/gstplayondemand.h: * gst/rtp/gstrtpL16enc.c: (get_payload_type): * gst/rtp/gstrtpL16enc.h: * gst/rtp/gstrtpgsmenc.h: More signed/unsigned fixes for GCC4.
-rw-r--r--ChangeLog11
-rw-r--r--gst/passthrough/gstpassthrough.h10
-rw-r--r--gst/playondemand/gstplayondemand.h6
3 files changed, 19 insertions, 8 deletions
diff --git a/ChangeLog b/ChangeLog
index 28d3e5ec..fa4a375d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,14 @@
+2005-04-22 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
+
+ * gst/adder/gstadder.h:
+ * gst/dvdlpcmdec/gstdvdlpcmdec.h:
+ * gst/passthrough/gstpassthrough.h:
+ * gst/playondemand/gstplayondemand.h:
+ * gst/rtp/gstrtpL16enc.c: (get_payload_type):
+ * gst/rtp/gstrtpL16enc.h:
+ * gst/rtp/gstrtpgsmenc.h:
+ More signed/unsigned fixes for GCC4.
+
2005-04-22 Kjartan Maraas <kmaraas@gnome.org>
Reviewed by: Ronald S. Bultje <rbultje@ronald.bitfreak.net>
diff --git a/gst/passthrough/gstpassthrough.h b/gst/passthrough/gstpassthrough.h
index 0b6f9d58..25dd5df8 100644
--- a/gst/passthrough/gstpassthrough.h
+++ b/gst/passthrough/gstpassthrough.h
@@ -55,14 +55,14 @@ struct _GstPassthrough {
/* the next are valid for both int and float */
GstPassthroughFormat format;
- guint rate;
- guint channels;
- guint width;
- guint endianness;
+ gint rate;
+ gint channels;
+ gint width;
+ gint endianness;
guint buffer_size;
/* the next are valid only for int formats */
- guint depth;
+ gint depth;
gboolean is_signed;
};
diff --git a/gst/playondemand/gstplayondemand.h b/gst/playondemand/gstplayondemand.h
index c99c8165..dacc0075 100644
--- a/gst/playondemand/gstplayondemand.h
+++ b/gst/playondemand/gstplayondemand.h
@@ -75,9 +75,9 @@ struct _GstPlayOnDemand {
/* audio format info (used to calculate buffer_samples) */
GstPlayOnDemandFormat format;
- guint rate;
- guint channels;
- guint width;
+ gint rate;
+ gint channels;
+ gint width;
};
struct _GstPlayOnDemandClass {