Allow removing the pad probe from inside the callback via the ProbeInfo::probe_id
These seem to be just new types for u64, so it must be possible to derive Clone, Copy
on them.
Otherwise something like pad.remove_probe(info.id)
from within probe handler doesn't work and requires something like pad.remove_probe(PadProbeId::from_glib(info.id.to_glib()))
.
Edited by Sebastian Dröge