From 555feaa11b7583d1bbd48e65e45acd82f2fb4704 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Tue, 27 May 2008 10:57:56 +0000 Subject: [PATCH] tests/check/pipelines/oggmux.c: Don't use deprecated function. Original commit message from CVS: * tests/check/pipelines/oggmux.c: (test_pipeline): Don't use deprecated function. --- ChangeLog | 5 +++++ tests/check/pipelines/oggmux.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 989d116854..475a184cbc 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2008-05-27 Tim-Philipp Müller + + * tests/check/pipelines/oggmux.c: (test_pipeline): + Don't use deprecated function. + 2008-05-27 Wim Taymans * gst/playback/gstdecodebin2.c: diff --git a/tests/check/pipelines/oggmux.c b/tests/check/pipelines/oggmux.c index 07abf13661..c319b263ba 100644 --- a/tests/check/pipelines/oggmux.c +++ b/tests/check/pipelines/oggmux.c @@ -263,7 +263,7 @@ test_pipeline (const char *pipeline) bin = gst_parse_launch (pipeline, &error); fail_unless (bin != NULL, "Error parsing pipeline: %s", error ? error->message : "(invalid error)"); - pad = gst_bin_find_unconnected_pad (GST_BIN (bin), GST_PAD_SRC); + pad = gst_bin_find_unlinked_pad (GST_BIN (bin), GST_PAD_SRC); fail_unless (pad != NULL, "Could not locate free src pad"); /* connect the fake sink */