mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-28 04:31:06 +00:00
Initialize various variables so gcc won't complain.
Original commit message from CVS: Initialize various variables so gcc won't complain. Use GST_BUFFER_FLAG_IS_SET instead of unknown function gst_buffer_is_readonly.
This commit is contained in:
parent
d41620bc75
commit
8aa9339f50
1 changed files with 3 additions and 3 deletions
|
@ -322,7 +322,7 @@ static GstPadLinkReturn
|
||||||
gst_audio_convert_link (GstPad *pad, GstCaps *caps)
|
gst_audio_convert_link (GstPad *pad, GstCaps *caps)
|
||||||
{
|
{
|
||||||
GstAudioConvert *this;
|
GstAudioConvert *this;
|
||||||
gint nr;
|
gint nr = 0;
|
||||||
gint rate, endianness, depth, width, channels;
|
gint rate, endianness, depth, width, channels;
|
||||||
gboolean sign;
|
gboolean sign;
|
||||||
|
|
||||||
|
@ -505,7 +505,7 @@ static GstBuffer*
|
||||||
gst_audio_convert_get_buffer (GstBuffer *buf, guint size)
|
gst_audio_convert_get_buffer (GstBuffer *buf, guint size)
|
||||||
{
|
{
|
||||||
GstBuffer *ret;
|
GstBuffer *ret;
|
||||||
if (buf->maxsize >= size && !gst_buffer_is_readonly (buf)) {
|
if (buf->maxsize >= size && !(GST_BUFFER_FLAG_IS_SET (buf, GST_BUFFER_READONLY))) {
|
||||||
gst_buffer_ref (buf);
|
gst_buffer_ref (buf);
|
||||||
buf->size = size;
|
buf->size = size;
|
||||||
return buf;
|
return buf;
|
||||||
|
@ -537,7 +537,7 @@ gst_audio_convert_buffer_to_default_format (GstAudioConvert *this, GstBuffer *bu
|
||||||
{
|
{
|
||||||
GstBuffer *ret;
|
GstBuffer *ret;
|
||||||
gint i, count;
|
gint i, count;
|
||||||
gint64 cur;
|
gint64 cur = 0;
|
||||||
gint32 write;
|
gint32 write;
|
||||||
guint8 *src, *dest;
|
guint8 *src, *dest;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue