mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
avfvideosrc: fix compiler warning in iOS
This commit is contained in:
parent
98e849a092
commit
7e195cdcdc
1 changed files with 3 additions and 3 deletions
|
@ -323,18 +323,18 @@ gst_atdec_set_format (GstAudioDecoder * decoder, GstCaps * caps)
|
|||
|
||||
create_queue_error:
|
||||
GST_ELEMENT_ERROR (atdec, STREAM, FORMAT, (NULL),
|
||||
("AudioQueueNewOutput returned error: %d", status));
|
||||
("AudioQueueNewOutput returned error: %d", (gint) status));
|
||||
return FALSE;
|
||||
|
||||
set_format_error:
|
||||
GST_ELEMENT_ERROR (atdec, STREAM, FORMAT, (NULL),
|
||||
("AudioQueueSetOfflineRenderFormat returned error: %d", status));
|
||||
("AudioQueueSetOfflineRenderFormat returned error: %d", (gint) status));
|
||||
gst_atdec_destroy_queue (atdec, FALSE);
|
||||
return FALSE;
|
||||
|
||||
start_error:
|
||||
GST_ELEMENT_ERROR (atdec, STREAM, FORMAT, (NULL),
|
||||
("AudioQueueStart returned error: %d", status));
|
||||
("AudioQueueStart returned error: %d", (gint) status));
|
||||
gst_atdec_destroy_queue (atdec, FALSE);
|
||||
return FALSE;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue