Skip to content

Commit 5b26177

Browse files
committed
Allow customization of buffer size
This allows for faster channel changes, assuming your wifi is up to it.
1 parent c8df72c commit 5b26177

File tree

5 files changed

+62
-1
lines changed

5 files changed

+62
-1
lines changed

app/src/main/java/ie/macinnes/tvheadend/Constants.java

+1
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ public class Constants {
3535
public static final String KEY_HTSP_STREAM_PROFILE = "htsp_stream_profile";
3636

3737
// Audio and Video Preferences Keys and Values
38+
public static final String KEY_BUFFER_PLAYBACK_MS = "buffer_playback_ms";
3839
public static final String KEY_AUDIO_PASSTHROUGH_DECODER_ENABLED = "audio_passthrough_decodeder_enabled";
3940
public static final String KEY_FFMPEG_AUDIO_ENABLED = "ffmpeg_audio_enabled";
4041
public static final String KEY_CAPTIONS_APPLY_EMBEDDED_STYLES = "captions_apply_embedded_styles";

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

+27-1
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@
5151
import com.google.android.exoplayer2.trackselection.TrackSelectionArray;
5252
import com.google.android.exoplayer2.ui.SubtitleView;
5353
import com.google.android.exoplayer2.upstream.DataSource;
54+
import com.google.android.exoplayer2.upstream.DefaultAllocator;
5455
import com.google.android.exoplayer2.util.MimeTypes;
5556

5657
import java.util.ArrayList;
@@ -198,7 +199,7 @@ private void buildExoPlayer() {
198199

199200
mTrackSelector = new TvheadendTrackSelector(trackSelectionFactory);
200201

201-
LoadControl loadControl = new DefaultLoadControl();
202+
LoadControl loadControl = buildLoadControl();
202203

203204
int extensionRendererMode = SimpleExoPlayer.EXTENSION_RENDERER_MODE_PREFER;
204205

@@ -229,6 +230,31 @@ private void buildExoPlayer() {
229230
mExtractorsFactory = new HtspExtractor.Factory(mContext);
230231
}
231232

233+
private LoadControl buildLoadControl() {
234+
SharedPreferences sharedPreferences = mContext.getSharedPreferences(
235+
Constants.PREFERENCE_TVHEADEND, Context.MODE_PRIVATE);
236+
237+
TrackSelection.Factory trackSelectionFactory =
238+
new AdaptiveTrackSelection.Factory(null);
239+
240+
mTrackSelector = new TvheadendTrackSelector(trackSelectionFactory);
241+
242+
int bufferForPlaybackMs = Integer.parseInt(
243+
sharedPreferences.getString(
244+
Constants.KEY_BUFFER_PLAYBACK_MS,
245+
mContext.getResources().getString(R.string.pref_default_buffer_playback_ms)
246+
)
247+
);
248+
249+
return new DefaultLoadControl(
250+
new DefaultAllocator(true, C.DEFAULT_BUFFER_SEGMENT_SIZE),
251+
DefaultLoadControl.DEFAULT_MIN_BUFFER_MS,
252+
DefaultLoadControl.DEFAULT_MAX_BUFFER_MS,
253+
bufferForPlaybackMs,
254+
DefaultLoadControl.DEFAULT_BUFFER_FOR_PLAYBACK_AFTER_REBUFFER_MS
255+
);
256+
}
257+
232258
private void buildHtspMediaSource(Uri channelUri) {
233259
// This is the MediaSource representing the media to be played.
234260
mMediaSource = new ExtractorMediaSource(channelUri,

app/src/main/res/values/constants.xml

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
<dimen name="subtitle_minimum_font_size">13sp</dimen>
2121

2222
<!-- Default Preference values -->
23+
<string name="pref_default_buffer_playback_ms">500</string>
2324
<bool name="pref_default_audio_passthrough_decodeder_enabled">false</bool>
2425
<bool name="pref_default_audio_ffmpeg_audio_enabled">true</bool>
2526
<bool name="pref_default_shield_workaround_enabled">true</bool>

app/src/main/res/values/preferences.xml

+24
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,28 @@
3535
<item>604800</item>
3636
<item>691200</item>
3737
</string-array>
38+
39+
<string-array name="buffer_playback_ms_names">
40+
<item>No Buffer</item>
41+
<item>0.5 Seconds</item>
42+
<item>1 Second</item>
43+
<item>1.5 Seconds</item>
44+
<item>2 Seconds</item>
45+
<item>2.5 Seconds</item>
46+
<item>3 Seconds</item>
47+
<item>4 Seconds</item>
48+
<item>5 Seconds</item>
49+
</string-array>
50+
51+
<string-array name="buffer_playback_ms_values">
52+
<item>0</item>
53+
<item>500</item>
54+
<item>1000</item>
55+
<item>1500</item>
56+
<item>2000</item>
57+
<item>2500</item>
58+
<item>3000</item>
59+
<item>4000</item>
60+
<item>5000</item>
61+
</string-array>
3862
</resources>

app/src/main/res/xml/preferences.xml

+9
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,15 @@
2020
android:title="TVHeadend Settings">
2121

2222
<PreferenceCategory android:title="Audio and Video">
23+
<ListPreference
24+
android:key="buffer_playback_ms"
25+
android:title="Buffer Duration"
26+
android:dialogTitle="Buffer Seconds"
27+
android:entries="@array/buffer_playback_ms_names"
28+
android:entryValues="@array/buffer_playback_ms_values"
29+
android:defaultValue="@string/pref_default_buffer_playback_ms"
30+
android:summary="How many seconds to buffer before starting playback"/>
31+
2332
<CheckBoxPreference
2433
android:key="audio_passthrough_decodeder_enabled"
2534
android:title="Enable Audio Passthrough"

0 commit comments

Comments
 (0)