Skip to content

Commit

Permalink
修改ijk部分so包,修ijk播放部分磁力闪退问题,暴力修ijk和exo播放部分磁力出现满屏数字问题
Browse files Browse the repository at this point in the history
  • Loading branch information
zhixc committed Nov 17, 2023
1 parent 179dc29 commit 9401e7e
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,10 @@ public void onSubtitleChanged(@Nullable final Subtitle subtitle) {
return;
}
String text = subtitle.content;
if (text.startsWith("Dialogue:") || text.startsWith("m ")) {
setText(EMPTY_TEXT);
return;
}
text = text.replaceAll("(?:\\r\\n)", "<br />");
text = text.replaceAll("(?:\\r)", "<br />");
text = text.replaceAll("(?:\\n)", "<br />");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,8 @@ public static void loadLibrariesOnce(IjkLibLoader libLoader) {
} catch (Throwable throwable) {

}
libLoader.loadLibrary("ijkplayer");
// libLoader.loadLibrary("ijkplayer");
libLoader.loadLibrary("player");
mIsLibLoaded = true;

}
Expand Down
Binary file added app/src/main/jniLibs/arm64-v8a/libplayer.so
Binary file not shown.
Binary file added app/src/main/jniLibs/armeabi-v7a/libplayer.so
Binary file not shown.

0 comments on commit 9401e7e

Please sign in to comment.