mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-26 17:18:15 +00:00
const fixes
Original commit message from CVS: const fixes
This commit is contained in:
parent
2d22fed727
commit
1868b0e348
2 changed files with 2 additions and 2 deletions
|
@ -61,7 +61,7 @@ gst_bin_find_unconnected_pad (GstBin *bin, GstPadDirection direction,
|
|||
{
|
||||
GstPad *pad = NULL;
|
||||
GList *elements = NULL;
|
||||
GList *pads = NULL;
|
||||
const GList *pads = NULL;
|
||||
GstElement *element = NULL;
|
||||
|
||||
g_print ("DEBUG: find_unconnected start\n");
|
||||
|
|
|
@ -996,7 +996,7 @@ gst_avi_demux_sync_streams (GstAviDemux *avi_demux, guint64 time)
|
|||
static gboolean
|
||||
gst_avi_demux_send_event (GstElement *element, GstEvent *event)
|
||||
{
|
||||
GList *pads;
|
||||
const GList *pads;
|
||||
|
||||
pads = gst_element_get_pad_list (element);
|
||||
|
||||
|
|
Loading…
Reference in a new issue