From cd4e191a00ddc7856755bceee460a7a67c977e62 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Thu, 27 Jan 2022 14:33:46 +0200 Subject: [PATCH] rtp: Re-export standalone functions from crate root --- gstreamer-rtp/src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/gstreamer-rtp/src/lib.rs b/gstreamer-rtp/src/lib.rs index aab301c91..2b2b3a616 100644 --- a/gstreamer-rtp/src/lib.rs +++ b/gstreamer-rtp/src/lib.rs @@ -27,6 +27,7 @@ macro_rules! skip_assert_initialized { #[allow(non_snake_case)] #[allow(clippy::use_self)] mod auto; +pub use crate::auto::functions::*; pub use crate::auto::*; pub mod rtp_buffer;