Skip to content
This repository was archived by the owner on Oct 25, 2024. It is now read-only.

Commit 8c21de0

Browse files
authored
Remove unnessary ; (#108)
1 parent 05893df commit 8c21de0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sdk/android/api/org/webrtc/HardwareVideoEncoderFactory.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ private boolean isHardwareSupportedInCurrentSdkH264(MediaCodecInfo info) {
251251
&& Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP)
252252
|| (name.startsWith(HISI_PREFIX) && Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT)
253253
|| (name.startsWith(IMG_PREFIX) && Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT)
254-
|| vcp.isExtraHardwareSupported(name, "video/avc", vcp.parseWithTag(vcp.loadWithDom(extraMediaCodecFile), "Decoders"));;
254+
|| vcp.isExtraHardwareSupported(name, "video/avc", vcp.parseWithTag(vcp.loadWithDom(extraMediaCodecFile), "Decoders"));
255255
}
256256

257257
private boolean isHardwareSupportedInCurrentSdkH265(MediaCodecInfo info) {

0 commit comments

Comments
 (0)