Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add gstreamer based audioplayers plugin #277

Merged
merged 16 commits into from
Aug 25, 2022
Merged
Prev Previous commit
Next Next commit
Update src/plugins/audioplayers/player.c
Co-authored-by: Hannes Winkler <[email protected]>
  • Loading branch information
DoumanAsh and ardera committed Aug 23, 2022
commit c78ba6de4ae69edf50c2318d0e65b94d52b14f73
1 change: 1 addition & 0 deletions src/plugins/audioplayers/player.c
Original file line number Diff line number Diff line change
Expand Up @@ -434,6 +434,7 @@ void audio_player_set_position(struct audio_player *self, int64_t position) {
}

void audio_player_set_source_url(struct audio_player *self, char *url) {
DEBUG_ASSERT_NOT_NULL(url);
if (self->url == NULL || strcmp(self->url, url)) {
DoumanAsh marked this conversation as resolved.
Show resolved Hide resolved
if (self->url != NULL) {
free(self->url);
Expand Down