Skip to content

Commit

Permalink
Fix issue #99
Browse files Browse the repository at this point in the history
  • Loading branch information
jsalas98 committed Sep 27, 2021
2 parents 8066cf0 + fb38e48 commit 6daf224
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ dnl please read gstreamer/docs/random/autotools before changing this file
dnl initialize autoconf
dnl releases only do -Wall, git and prerelease does -Werror too
dnl use a three digit version number for releases, and four for git/pre
AC_INIT([GstInterpipe],[1.1.5],
AC_INIT([GstInterpipe],[1.1.6],
[http://www.github.com/RidgeRun/gst-interpipe-1.0],
[gst-interpipe],
[http://developer.ridgerun.com/wiki/index.php?title=GstInterpipe])
Expand Down
6 changes: 5 additions & 1 deletion gst/interpipe/gstinterpipesrc.c
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,11 @@ gst_inter_pipe_src_set_property (GObject * object, guint prop_id,
switch (prop_id) {
case PROP_LISTEN_TO:
node_name = g_strdup (g_value_get_string (value));
if (node_name != NULL) {
if (!g_strcmp0 (src->listen_to, node_name)) {
/* We are already listening to that node, so nothing to do */
GST_INFO ("Already listening to node %s", node_name);
g_free (node_name);
} else if (node_name != NULL) {
if (GST_BASE_SRC_IS_STARTED (GST_BASE_SRC (src))) {
/* valid node_name, BaseSrc started */
if (!gst_inter_pipe_src_listen_node (src, node_name)) {
Expand Down
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
project('gst-interpipes', 'c',
version : '1.1.5',
version : '1.1.6',
meson_version : '>= 0.50',)

gst_interpipes_version = meson.project_version()
Expand Down

0 comments on commit 6daf224

Please sign in to comment.