Skip to content

Commit

Permalink
#2025 P25P1 audio module null codec error.
Browse files Browse the repository at this point in the history
  • Loading branch information
Dennis Sheirer committed Oct 18, 2024
1 parent 4977c3e commit 3bfcb14
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* *****************************************************************************
* Copyright (C) 2014-2023 Dennis Sheirer
* Copyright (C) 2014-2024 Dennis Sheirer
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
Expand Down Expand Up @@ -41,6 +41,9 @@
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

/**
* Base audio module for protocols that use the JMBE audio codec.
*/
public abstract class JmbeAudioModule extends AbstractAudioModule implements Listener<IMessage>, IMessageListener,
ISquelchStateListener
{
Expand All @@ -64,7 +67,6 @@ public void dispose()
{
super.dispose();
MyEventBus.getGlobalEventBus().unregister(this);
mAudioCodec = null;
}

public IAudioCodec getAudioCodec()
Expand Down

0 comments on commit 3bfcb14

Please sign in to comment.