mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 10:41:04 +00:00
const fixes
Original commit message from CVS: const fixes
This commit is contained in:
parent
a316ba39ef
commit
bda510b4a0
4 changed files with 5 additions and 4 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");
|
||||
|
|
|
@ -26,7 +26,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;
|
||||
|
||||
elements = (GList *) gst_bin_get_list (bin);
|
||||
|
|
|
@ -260,7 +260,8 @@ static GstPadConnectReturn
|
|||
gst_adder_connect (GstPad *pad, GstCaps *caps)
|
||||
{
|
||||
GstAdder *adder;
|
||||
GList *sinkpads, *remove = NULL;
|
||||
const GList *sinkpads;
|
||||
GList *remove = NULL;
|
||||
GSList *channels;
|
||||
GstPad *p;
|
||||
|
||||
|
|
|
@ -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");
|
||||
|
|
Loading…
Reference in a new issue