From ce7d314349e4ebb27255c69677c4ccb41757f717 Mon Sep 17 00:00:00 2001 From: Guillaume Desmottes Date: Sat, 2 Nov 2024 16:14:08 +0100 Subject: [PATCH] spotify: make common module public Karapulse implements its own bin wrapping spotifyaudiosrc, spotifylyricssrc and videotestsrc for rendering Spotify songs. This element has lived in my own gst-plugins-rs branch for ages but now that spotifylyricssrc has been usptreamed I'd like to move it to the Karapulse source tree. But to be able to do so it needs to be able to use the common module from the spotify plugin. Part-of: --- audio/spotify/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/audio/spotify/src/lib.rs b/audio/spotify/src/lib.rs index 7f1c05215..830a1c1bd 100644 --- a/audio/spotify/src/lib.rs +++ b/audio/spotify/src/lib.rs @@ -14,7 +14,7 @@ */ use gst::glib; -mod common; +pub mod common; mod spotifyaudiosrc; mod spotifylyricssrc;