Skip to content

Commit 18a3bac

Browse files
committed
Update for HTSP Lib v0.0.1a22
1 parent d9435a4 commit 18a3bac

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

app/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ repositories {
6868
}
6969

7070
dependencies {
71-
compile 'ie.macinnes.htsp:android-htsp:v0.0.1a19'
71+
compile 'ie.macinnes.htsp:android-htsp:v0.0.1a22'
7272
// Used for testing local HTSP lib builds
7373
// compile(name: 'library-debug', ext: 'aar')
7474
compile fileTree(include: ['*.jar'], dir: 'libs')

app/src/main/java/ie/macinnes/tvheadend/player/HtspDataSource.java

+4-1
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,8 @@ public HtspDataSource(Context context, SimpleHtspConnection connection, String s
9393
throw new RuntimeException("OutOfMemoryError when allocating HtspDataSource buffer", e);
9494
}
9595

96-
mSubscriber = new Subscriber(mConnection, this);
96+
mSubscriber = new Subscriber(mConnection);
97+
mSubscriber.addSubscriptionListener(this);
9798
mConnection.addAuthenticationListener(mSubscriber);
9899
}
99100

@@ -168,7 +169,9 @@ public void close() throws IOException {
168169
mIsOpen = false;
169170

170171
mConnection.removeAuthenticationListener(mSubscriber);
172+
mSubscriber.removeSubscriptionListener(this);
171173
mSubscriber.unsubscribe();
174+
mSubscriber = null;
172175

173176
// Watch for memory leaks
174177
Application.getRefWatcher(mContext).watch(this);

0 commit comments

Comments
 (0)