mirror of
https://codeberg.org/tom79/Fedilab.git
synced 2025-04-06 07:00:01 +03:00
Fix issue #1156 - GIF are not displayed in timelines
This commit is contained in:
parent
c982e5a452
commit
504816e21c
1 changed files with 2 additions and 2 deletions
|
@ -1743,7 +1743,7 @@ public class StatusAdapter extends RecyclerView.Adapter<RecyclerView.ViewHolder>
|
|||
.createMediaSource(mediaItem);
|
||||
}
|
||||
try {
|
||||
int MIN_BUFFER_DURATION = 1000;
|
||||
int MIN_BUFFER_DURATION = 1024;
|
||||
int MIN_PLAYBACK_RESUME_BUFFER = 1024;
|
||||
int MIN_PLAYBACK_START_BUFFER = 1024;
|
||||
DefaultLoadControl defaultLoadControl = new DefaultLoadControl.Builder()
|
||||
|
@ -1826,7 +1826,7 @@ public class StatusAdapter extends RecyclerView.Adapter<RecyclerView.ViewHolder>
|
|||
.createMediaSource(mediaItem);
|
||||
}
|
||||
try {
|
||||
int MIN_BUFFER_DURATION = 1000;
|
||||
int MIN_BUFFER_DURATION = 1024;
|
||||
int MIN_PLAYBACK_RESUME_BUFFER = 1024;
|
||||
int MIN_PLAYBACK_START_BUFFER = 1024;
|
||||
DefaultLoadControl defaultLoadControl = new DefaultLoadControl.Builder()
|
||||
|
|
Loading…
Reference in a new issue