Skip to content

Commit

Permalink
Merge branch 'release/v1.1.3'
Browse files Browse the repository at this point in the history
  • Loading branch information
jcaballeros committed Sep 24, 2020
2 parents 94dea52 + bcd8ffa commit 89001fd
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 13 deletions.
2 changes: 1 addition & 1 deletion common
Submodule common updated from 88e512 to dd9d40
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.2],
AC_INIT([GstInterpipe],[1.1.3],
[http://www.github.com/RidgeRun/gst-interpipe-1.0],
[gst-interpipe],
[http://developer.ridgerun.com/wiki/index.php?title=GstInterpipe])
Expand Down
10 changes: 10 additions & 0 deletions gst-interpipe.doap
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,16 @@ GstInterpipe is a plug-in with two elements which allow the communication betwee
</GitRepository>
</repository>

<release>
<Version>
<revision>1.1.3</revision>
<branch>master</branch>
<name></name>
<created>2020-09-15</created>
<file-release rdf:resource="" />
</Version>
</release>

<release>
<Version>
<revision>1.1.2</revision>
Expand Down
10 changes: 2 additions & 8 deletions gst/interpipe/gstinterpipesink.c
Original file line number Diff line number Diff line change
Expand Up @@ -742,7 +742,7 @@ gst_inter_pipe_sink_add_listener (GstInterPipeINode * iface,
gboolean has_listeners;

if (!sinkcaps)
goto sinkcaps_null;
goto add_to_list;

has_listeners = 0 != g_hash_table_size (listeners);

Expand Down Expand Up @@ -786,6 +786,7 @@ gst_inter_pipe_sink_add_listener (GstInterPipeINode * iface,
if (sinkcaps)
gst_caps_unref (sinkcaps);

add_to_list:
g_mutex_lock (&sink->listeners_mutex);
if (g_hash_table_contains (listeners, listener_name))
goto already_registered;
Expand All @@ -798,13 +799,6 @@ gst_inter_pipe_sink_add_listener (GstInterPipeINode * iface,
return TRUE;

/* Errors */
sinkcaps_null:
{
GST_ERROR_OBJECT (sink,
"Can not add listener %s because our caps are not defined yet",
listener_name);
goto error;
}
renegotiate_error:
{
GST_ERROR_OBJECT (sink, "Can not connect listener, caps do not intersect");
Expand Down
3 changes: 1 addition & 2 deletions gst/interpipe/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,9 @@ gst_interpipes_headers = [
]

# Build plugin library
gst_interpipes_lib = library('gstinterpipes-@0@'.format(apiversion),
gst_interpipes_lib = library('gstinterpipe',
gst_interpipes_sources,
c_args : gst_c_args,
version : apiversion,
include_directories : configinc,
install : true,
install_dir : plugin_install_dir,
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.2',
version : '1.1.3',
meson_version : '>= 0.50',)

gst_interpipes_version = meson.project_version()
Expand Down

0 comments on commit 89001fd

Please sign in to comment.