|
51 | 51 | import com.google.android.exoplayer2.trackselection.TrackSelectionArray;
|
52 | 52 | import com.google.android.exoplayer2.ui.SubtitleView;
|
53 | 53 | import com.google.android.exoplayer2.upstream.DataSource;
|
| 54 | +import com.google.android.exoplayer2.upstream.DefaultAllocator; |
54 | 55 | import com.google.android.exoplayer2.util.MimeTypes;
|
55 | 56 |
|
56 | 57 | import java.util.ArrayList;
|
@@ -198,7 +199,7 @@ private void buildExoPlayer() {
|
198 | 199 |
|
199 | 200 | mTrackSelector = new TvheadendTrackSelector(trackSelectionFactory);
|
200 | 201 |
|
201 |
| - LoadControl loadControl = new DefaultLoadControl(); |
| 202 | + LoadControl loadControl = buildLoadControl(); |
202 | 203 |
|
203 | 204 | int extensionRendererMode = SimpleExoPlayer.EXTENSION_RENDERER_MODE_PREFER;
|
204 | 205 |
|
@@ -229,6 +230,31 @@ private void buildExoPlayer() {
|
229 | 230 | mExtractorsFactory = new HtspExtractor.Factory(mContext);
|
230 | 231 | }
|
231 | 232 |
|
| 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 | + |
232 | 258 | private void buildHtspMediaSource(Uri channelUri) {
|
233 | 259 | // This is the MediaSource representing the media to be played.
|
234 | 260 | mMediaSource = new ExtractorMediaSource(channelUri,
|
|
0 commit comments