diff options
Diffstat (limited to 'gst')
| -rw-r--r-- | gst/level/level-example.c | 2 | ||||
| -rw-r--r-- | gst/udp/gstudpsrc.c | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/gst/level/level-example.c b/gst/level/level-example.c index dcfdec0c..6aac1a5d 100644 --- a/gst/level/level-example.c +++ b/gst/level/level-example.c @@ -77,7 +77,7 @@ main (int argc, char *argv[]) g_object_set (G_OBJECT (level), "message", TRUE, NULL); bus = gst_element_get_bus (pipeline); - watch_id = gst_bus_add_watch (bus, message_handler, NULL); + watch_id = gst_bus_add_watch (bus, GST_MESSAGE_ANY, message_handler, NULL); gst_element_set_state (pipeline, GST_STATE_PLAYING); diff --git a/gst/udp/gstudpsrc.c b/gst/udp/gstudpsrc.c index e4625911..3c95ee60 100644 --- a/gst/udp/gstudpsrc.c +++ b/gst/udp/gstudpsrc.c @@ -408,6 +408,7 @@ gst_udpsrc_set_property (GObject * object, guint prop_id, const GValue * value, old_caps = udpsrc->caps; udpsrc->caps = new_caps; gst_caps_unref (old_caps); + gst_pad_set_caps (GST_BASE_SRC (udpsrc)->srcpad, new_caps); break; } default: |
