mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 20:21:24 +00:00
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
This commit is contained in:
parent
cc88656bfb
commit
80ef3ac0ba
2 changed files with 4 additions and 4 deletions
|
@ -59,7 +59,7 @@
|
||||||
/* the (3rd) step uses different shift&round constants (explained later.)
*/
|
/* the (3rd) step uses different shift&round constants (explained later.)
*/
|
||||||
/*
*/
|
/*
*/
|
||||||
/* Also note that the intermediate transpose (2) would not be neccessary,
*/
|
/* 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
*/
|
/* we only have the iDCT-row transform, we transpose the intermediate
*/
|
||||||
/* matrix and use the iDCT-row transform a 2nd time.
*/
|
/* matrix and use the iDCT-row transform a 2nd time.
*/
|
||||||
/*
*/
|
/*
*/
|
||||||
|
|
|
@ -372,7 +372,7 @@ gst_asfmux_vidsink_link (GstPad * pad, const GstCaps * caps)
|
||||||
|
|
||||||
goto done;
|
goto done;
|
||||||
}
|
}
|
||||||
return GST_PAD_LINK_REFUSED;
|
/* return GST_PAD_LINK_REFUSED; */
|
||||||
|
|
||||||
done:
|
done:
|
||||||
stream->bitrate = 1024 * 1024;
|
stream->bitrate = 1024 * 1024;
|
||||||
|
@ -478,7 +478,7 @@ gst_asfmux_audsink_link (GstPad * pad, const GstCaps * caps)
|
||||||
|
|
||||||
goto done;
|
goto done;
|
||||||
}
|
}
|
||||||
return GST_PAD_LINK_REFUSED;
|
/* return GST_PAD_LINK_REFUSED; */
|
||||||
|
|
||||||
done:
|
done:
|
||||||
stream->bitrate = stream->header.audio.byte_rate * 8;
|
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));
|
gst_pad_push (asfmux->srcpad, GST_DATA (footer));
|
||||||
} else if (gst_asfmux_can_seek (asfmux)) {
|
} else if (gst_asfmux_can_seek (asfmux)) {
|
||||||
/* rewrite an updated header */
|
/* rewrite an updated header */
|
||||||
guint64 filesize;
|
gint64 filesize;
|
||||||
GstFormat fmt = GST_FORMAT_BYTES;
|
GstFormat fmt = GST_FORMAT_BYTES;
|
||||||
GstEvent *event;
|
GstEvent *event;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue