retrieve-sender-address property in ts-udpsrc
I am using udpsrc, I tried to replace it with ts-udpsrc, but "retrieve-sender-address" property is not there yet. I am using the property to retrieve address by adding a probe in udpsrc src pad.
struct _GstNetAddressMeta *meta = gst_buffer_get_net_address_meta(buffer);
assert(meta);
GInetSocketAddress *sockAddr = (GInetSocketAddress *) meta->addr;
assert(sockAddr);
Is there any other way to achieve this in ts-udpsrc ?