From 80ef3ac0ba6685b8147815810237fb2958cfbc19 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Loeuillet?= Date: Mon, 24 May 2004 14:18:56 +0000 Subject: [PATCH] hopefully, fix warnings in asfmux on solaris 10/with forte Original commit message from CVS: hopefully, fix warnings in asfmux on solaris 10/with forte --- gst-libs/gst/idct/mmx32idct.c | 2 +- gst/asfdemux/gstasfmux.c | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/gst-libs/gst/idct/mmx32idct.c b/gst-libs/gst/idct/mmx32idct.c index d5bbbdb983..32f17bea9d 100644 --- a/gst-libs/gst/idct/mmx32idct.c +++ b/gst-libs/gst/idct/mmx32idct.c @@ -59,7 +59,7 @@ /* the (3rd) step uses different shift&round constants (explained later.) */ /* */ /* Also note that the intermediate transpose (2) would not be neccessary, */ -/* if the subsequent operation were a iDCT-column transformation. Since */ +/* if the subsequent operation were an iDCT-column transformation. Since */ /* we only have the iDCT-row transform, we transpose the intermediate */ /* matrix and use the iDCT-row transform a 2nd time. */ /* */ diff --git a/gst/asfdemux/gstasfmux.c b/gst/asfdemux/gstasfmux.c index 64d73fac47..2be552048c 100644 --- a/gst/asfdemux/gstasfmux.c +++ b/gst/asfdemux/gstasfmux.c @@ -372,7 +372,7 @@ gst_asfmux_vidsink_link (GstPad * pad, const GstCaps * caps) goto done; } - return GST_PAD_LINK_REFUSED; +/* return GST_PAD_LINK_REFUSED; */ done: stream->bitrate = 1024 * 1024; @@ -478,7 +478,7 @@ gst_asfmux_audsink_link (GstPad * pad, const GstCaps * caps) goto done; } - return GST_PAD_LINK_REFUSED; +/* return GST_PAD_LINK_REFUSED; */ done: stream->bitrate = stream->header.audio.byte_rate * 8; @@ -1056,7 +1056,7 @@ gst_asfmux_file_stop (GstAsfMux * asfmux) gst_pad_push (asfmux->srcpad, GST_DATA (footer)); } else if (gst_asfmux_can_seek (asfmux)) { /* rewrite an updated header */ - guint64 filesize; + gint64 filesize; GstFormat fmt = GST_FORMAT_BYTES; GstEvent *event;