mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 11:41:09 +00:00
fixed FIXME's
Original commit message from CVS: fixed FIXME's
This commit is contained in:
parent
88fdf0bf16
commit
90160b0202
6 changed files with 10 additions and 10 deletions
|
@ -164,10 +164,10 @@ main (int argc, char *argv[])
|
|||
g_print ("set caps on src: %d\n", result);
|
||||
g_print ("initial converter status: %d %d\n", converter_in, converter_out);
|
||||
|
||||
/* result = FIXME */ gst_pad_connect (srcpad, sinkconvpad);
|
||||
result = gst_pad_try_connect (srcpad, sinkconvpad);
|
||||
g_print ("pad connect 1: %d\n", result);
|
||||
overall &= (result == TRUE);
|
||||
/* result = FIXME */ gst_pad_connect (srcconvpad, sinkpad);
|
||||
result = gst_pad_try_connect (srcconvpad, sinkpad);
|
||||
g_print ("pad connect 2: %d\n", result);
|
||||
overall &= (result == TRUE);
|
||||
|
||||
|
|
|
@ -206,10 +206,10 @@ main (int argc, char *argv[])
|
|||
g_print ("result: %d, converter status: %d %d, target: %d\n\n", result,
|
||||
converter_in, converter_out, target_rate);
|
||||
|
||||
/* result = FIXME */ gst_pad_connect (srcpad, sinkconvpad);
|
||||
result = gst_pad_try_connect (srcpad, sinkconvpad);
|
||||
g_print ("pad connect 1: %d\n", result);
|
||||
overall &= (result == TRUE);
|
||||
/* result = FIXME */ gst_pad_connect (srcconvpad, sinkpad);
|
||||
result = gst_pad_try_connect (srcconvpad, sinkpad);
|
||||
g_print ("pad connect 2: %d\n", result);
|
||||
overall &= (result == TRUE);
|
||||
|
||||
|
|
|
@ -154,7 +154,7 @@ main (int argc, char *argv[])
|
|||
|
||||
g_print ("The wild goose chase...\n");
|
||||
|
||||
/* result FIXME = */ gst_pad_connect (srcconvpad, sinkconvpad);
|
||||
result = gst_pad_try_connect (srcconvpad, sinkconvpad);
|
||||
g_print ("pad connect 1: %d\n", result);
|
||||
overall &= (result == TRUE);
|
||||
|
||||
|
|
|
@ -164,10 +164,10 @@ main (int argc, char *argv[])
|
|||
g_print ("set caps on src: %d\n", result);
|
||||
g_print ("initial converter status: %d %d\n", converter_in, converter_out);
|
||||
|
||||
/* result = FIXME */ gst_pad_connect (srcpad, sinkconvpad);
|
||||
result = gst_pad_try_connect (srcpad, sinkconvpad);
|
||||
g_print ("pad connect 1: %d\n", result);
|
||||
overall &= (result == TRUE);
|
||||
/* result = FIXME */ gst_pad_connect (srcconvpad, sinkpad);
|
||||
result = gst_pad_try_connect (srcconvpad, sinkpad);
|
||||
g_print ("pad connect 2: %d\n", result);
|
||||
overall &= (result == TRUE);
|
||||
|
||||
|
|
|
@ -206,10 +206,10 @@ main (int argc, char *argv[])
|
|||
g_print ("result: %d, converter status: %d %d, target: %d\n\n", result,
|
||||
converter_in, converter_out, target_rate);
|
||||
|
||||
/* result = FIXME */ gst_pad_connect (srcpad, sinkconvpad);
|
||||
result = gst_pad_try_connect (srcpad, sinkconvpad);
|
||||
g_print ("pad connect 1: %d\n", result);
|
||||
overall &= (result == TRUE);
|
||||
/* result = FIXME */ gst_pad_connect (srcconvpad, sinkpad);
|
||||
result = gst_pad_try_connect (srcconvpad, sinkpad);
|
||||
g_print ("pad connect 2: %d\n", result);
|
||||
overall &= (result == TRUE);
|
||||
|
||||
|
|
|
@ -154,7 +154,7 @@ main (int argc, char *argv[])
|
|||
|
||||
g_print ("The wild goose chase...\n");
|
||||
|
||||
/* result FIXME = */ gst_pad_connect (srcconvpad, sinkconvpad);
|
||||
result = gst_pad_try_connect (srcconvpad, sinkconvpad);
|
||||
g_print ("pad connect 1: %d\n", result);
|
||||
overall &= (result == TRUE);
|
||||
|
||||
|
|
Loading…
Reference in a new issue