Remove LibaomAv1EncoderIfSupported
Bug: webrtc:13573 Change-Id: Ia9a6d1809488d92753527350a61f0a46159ccd8b Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/262814 Reviewed-by: Mirko Bonadei <mbonadei@webrtc.org> Reviewed-by: Ilya Nikolaevskiy <ilnik@webrtc.org> Reviewed-by: Xavier Lepaul <xalep@webrtc.org> Reviewed-by: Peter Hanspers <peterhanspers@webrtc.org> Commit-Queue: Philip Eliasson <philipel@webrtc.org> Cr-Commit-Position: refs/heads/main@{#37033}
This commit is contained in:
@ -28,9 +28,8 @@ public class SoftwareVideoEncoderFactory implements VideoEncoderFactory {
|
||||
&& LibvpxVp9Encoder.nativeIsSupported()) {
|
||||
return new LibvpxVp9Encoder();
|
||||
}
|
||||
if (codecName.equalsIgnoreCase(VideoCodecMimeType.AV1.name())
|
||||
&& LibaomAv1EncoderIfSupported.nativeIsSupported()) {
|
||||
return new LibaomAv1EncoderIfSupported();
|
||||
if (codecName.equalsIgnoreCase(VideoCodecMimeType.AV1.name())) {
|
||||
return new LibaomAv1Encoder();
|
||||
}
|
||||
|
||||
return null;
|
||||
@ -48,9 +47,7 @@ public class SoftwareVideoEncoderFactory implements VideoEncoderFactory {
|
||||
if (LibvpxVp9Encoder.nativeIsSupported()) {
|
||||
codecs.add(new VideoCodecInfo(VideoCodecMimeType.VP9.name(), new HashMap<>()));
|
||||
}
|
||||
if (LibaomAv1EncoderIfSupported.nativeIsSupported()) {
|
||||
codecs.add(new VideoCodecInfo(VideoCodecMimeType.AV1.name(), new HashMap<>()));
|
||||
}
|
||||
codecs.add(new VideoCodecInfo(VideoCodecMimeType.AV1.name(), new HashMap<>()));
|
||||
|
||||
return codecs.toArray(new VideoCodecInfo[codecs.size()]);
|
||||
}
|
||||
|
Reference in New Issue
Block a user