avfvideosrc: fix compiler warning in iOS
This commit is contained in:
parent
98e849a092
commit
7e195cdcdc
@ -323,18 +323,18 @@ gst_atdec_set_format (GstAudioDecoder * decoder, GstCaps * caps)
|
|||||||
|
|
||||||
create_queue_error:
|
create_queue_error:
|
||||||
GST_ELEMENT_ERROR (atdec, STREAM, FORMAT, (NULL),
|
GST_ELEMENT_ERROR (atdec, STREAM, FORMAT, (NULL),
|
||||||
("AudioQueueNewOutput returned error: %d", status));
|
("AudioQueueNewOutput returned error: %d", (gint) status));
|
||||||
return FALSE;
|
return FALSE;
|
||||||
|
|
||||||
set_format_error:
|
set_format_error:
|
||||||
GST_ELEMENT_ERROR (atdec, STREAM, FORMAT, (NULL),
|
GST_ELEMENT_ERROR (atdec, STREAM, FORMAT, (NULL),
|
||||||
("AudioQueueSetOfflineRenderFormat returned error: %d", status));
|
("AudioQueueSetOfflineRenderFormat returned error: %d", (gint) status));
|
||||||
gst_atdec_destroy_queue (atdec, FALSE);
|
gst_atdec_destroy_queue (atdec, FALSE);
|
||||||
return FALSE;
|
return FALSE;
|
||||||
|
|
||||||
start_error:
|
start_error:
|
||||||
GST_ELEMENT_ERROR (atdec, STREAM, FORMAT, (NULL),
|
GST_ELEMENT_ERROR (atdec, STREAM, FORMAT, (NULL),
|
||||||
("AudioQueueStart returned error: %d", status));
|
("AudioQueueStart returned error: %d", (gint) status));
|
||||||
gst_atdec_destroy_queue (atdec, FALSE);
|
gst_atdec_destroy_queue (atdec, FALSE);
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user