Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
58 commits
Select commit Hold shift + click to select a range
bbcab7b
add third player moudle
Aug 22, 2023
0829c64
add Audio Waveform Moudle
Aug 24, 2023
2456acb
Fixed an issue where remote users joined player pause when rtc and pl…
Sep 7, 2023
2843983
fix ui issue
Sep 8, 2023
b9a7e8c
update content inspect config
Sep 11, 2023
c86dca5
add Feature Available On Device
Sep 11, 2023
f7b447e
add take snapshot ex
Sep 11, 2023
f2f8f60
update beautyAPI version to 1.0.3
Sep 11, 2023
fadeb22
add Feature Available On Device
Sep 11, 2023
7363855
add snapshot ex
Sep 11, 2023
30d7224
fix snapshot remote bug
Sep 11, 2023
e04af7c
[Android]Add AudioRouterPlayer case.
xgfd3 Aug 30, 2023
0806301
[Android]Add AudioWaveform case.
xgfd3 Aug 30, 2023
eaac1c5
[Android][Audio]add AudioWaveform case.
xgfd3 Aug 30, 2023
c6bc746
[Android]adjust content inspect case.
xgfd3 Sep 11, 2023
d6ec2ed
[Android]Add isFeatureAvailableOnDevice api in VideoProcessExtension.
xgfd3 Sep 11, 2023
e4c33ac
[Android]Add takesnapshotex for JoinMultipleChannel.
xgfd3 Sep 11, 2023
a44cc0c
[Android]update beauty api to 1.0.3 and etc.
xgfd3 Sep 11, 2023
51261de
[Windows]add snapshot for MultiChannel.
xgfd3 Sep 11, 2023
470b1c0
[Windows]fix snapshot bug.
xgfd3 Sep 11, 2023
5a25c47
fix oc crate stream data bug
Sep 12, 2023
6eed57d
fix swift create stream data bug
Sep 12, 2023
013c4bb
[Android]fix remote render error when rejoining channel(NMS-15581).
xgfd3 Sep 14, 2023
34a6355
[Android]perfect PushExternalVideoYUV case.
xgfd3 Sep 14, 2023
cb30098
add file sharing key
Sep 14, 2023
7625e78
fix title
Sep 14, 2023
ed3d06f
fix multi channel bug
Sep 14, 2023
8f6f43e
fix conent inspect bug
Sep 14, 2023
b2a00b6
[Windows]fix media player crash.
xgfd3 Sep 14, 2023
528ec69
[Android]perfect MultiVideoSourceTracks case.
xgfd3 Sep 14, 2023
f9c38ce
fix input token crash bug
Sep 14, 2023
e44d429
fix input token crash bug
Sep 14, 2023
b9aef50
[Android]Update readme. (#355)
xgfd3 Sep 14, 2023
a115dc9
[Android]add 4K 60fps h265. (#356)
xgfd3 Sep 14, 2023
8602102
[Android]fix ui bug.
xgfd3 Sep 15, 2023
ac97852
[Android]fix render bug(CSD-59845).
xgfd3 Sep 15, 2023
c90e2ab
Fix the issue of no sound during AVPlayer playback
Sep 15, 2023
fcd5460
Merge branch 'dev/4.2.3' of github.com:AgoraIO/API-Examples into dev/…
Sep 15, 2023
f68aac4
[Android]add cases of enableVideoImageSource and setAINSMode api and …
xgfd3 Sep 22, 2023
68f7694
[Android]add setAINSMode api case and etc.
xgfd3 Sep 22, 2023
b7d0627
add video image push
Sep 22, 2023
3d893ca
add AINS Mode
Sep 22, 2023
12a0ac2
iOS Add AINS Mode
Sep 22, 2023
b95b279
ios add video image push
Sep 22, 2023
ed64a7d
[Windows]add enableVideoImageSource and setAINSMode api case.
xgfd3 Sep 23, 2023
73c7098
Merge branch 'dev/4.2.3' of github.com:AgoraIO/API-Examples into dev/…
Sep 26, 2023
0195245
[MacOS]fix audio recording path bug.
xgfd3 Oct 3, 2023
30a00ae
fix startAudioRecording path bug
Oct 8, 2023
6c65cea
fix audio session change issue
Oct 8, 2023
f62be74
Merge branch 'dev/4.2.3' of github.com:AgoraIO/API-Examples into dev/…
Oct 8, 2023
4303e02
fix video image source issue
Oct 9, 2023
f3a194d
..
Oct 9, 2023
0081c67
fix exit screen leave channel issue
Oct 9, 2023
5551dcb
screen shareing auto close system interface
Oct 11, 2023
d812398
[Android]update rtc verstion and etc.
xgfd3 Oct 12, 2023
d75a622
[Windows]Update rtc verstion.
xgfd3 Oct 12, 2023
e1ac4d3
update SDK version to 4.2.3
Oct 12, 2023
118b2fb
Merge branch 'dev/4.2.3' of github.com:AgoraIO/API-Examples into dev/…
Oct 12, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
[Android]fix render bug(CSD-59845).
  • Loading branch information
xgfd3 committed Sep 15, 2023
commit ac97852c3ae9bacbe552ba2f42155c23d2d3a790
Original file line number Diff line number Diff line change
Expand Up @@ -497,6 +497,7 @@ public boolean onRenderVideoFrame(String s, int i, VideoFrame videoFrame) {
public Void call() throws Exception {
if (lastI420Frame.getBuffer() instanceof VideoFrame.I420Buffer) {
final VideoFrame.I420Buffer i420Buffer = (VideoFrame.I420Buffer) lastI420Frame.getBuffer();
GLES20.glPixelStorei(GLES20.GL_UNPACK_ALIGNMENT, 1);
yuvUploader.uploadFromBuffer(i420Buffer);
}
return null;
Expand Down