mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 18:21:04 +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.)
*/
|
||||
/*
*/
|
||||
/* 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.
*/
|
||||
/*
*/
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue