Skip to content

Commit 057e302

Browse files
committed
Fix page size
1 parent f816d2c commit 057e302

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/src/main/java/org/schabi/newpipe/streams/OggFromWebMWriter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ public class OggFromWebMWriter implements Closeable {
8686
* @see <a href="https://datatracker.ietf.org/doc/html/rfc7845.html#section-6">
8787
* RFC7845 6. Packet Size Limits</a>
8888
*/
89-
private static final int OPUS_MAX_PACKETS_PAGE_SIZE = 61_440;
89+
private static final int OPUS_MAX_PACKETS_PAGE_SIZE = 65_025;
9090

9191
private boolean done = false;
9292
private boolean parsed = false;

0 commit comments

Comments
 (0)