Cleanup commented out usage of kIsLibaomAv1{En|De}coderSupported in third_party/libwebrtc/media/engine/internal_{en|de}coder_factory.cc
Categories
(Core :: WebRTC, task, P2)
Tracking
()
Tracking | Status | |
---|---|---|
firefox97 | --- | fixed |
People
(Reporter: mjf, Assigned: mjf)
References
Details
Attachments
(5 files)
In ef548d7758c7 Disable creating av1 encoder and decoder
third_party/libwebrtc/media/engine/internal_decoder_factory.cc kIsLibaomAv1DecoderSupported usage is commented out.
In third_party/libwebrtc/media/engine/internal_encoder_factory.cc kIsLibaomAv1EncoderSupported usage is commented out.
If we properly set enable_libaom here it will instead us
libaom_av1_decoder_absent.cc and libaom_av1_encoder_absent.cc. Each of these returns null, preserving the current behavior of internal_{en|de}coder_factory.cc.
Assignee | ||
Updated•3 years ago
|
Assignee | ||
Comment 1•3 years ago
|
||
For some reason, third_party/libwebrtc/rtc_base/timeutils_gn/moz.build was
in an odd state after our final merge where each of the platforms contained
DEFINES["WEBRTC_EXCLUDE_SYSTEM_TIME"] = True
instead of having that define at the top level across all platforms. After
re-running the generation on each platform (macOS/Linux/Win), all platforms
ended with this file in the same state with the define at the top.
Assignee | ||
Comment 2•3 years ago
|
||
This restores the contents of these 2 files to match moz_libwebrtc
versions. The changes we're reverting were made simply to help
get the project compiling, but there is a more official way to
accomplish the same thing (see the next patch).
Depends on D133405
Assignee | ||
Comment 3•3 years ago
|
||
This change results in using libaom_av1_decoder_absent.cc and
libaom_av1_encoder_absent.cc.
When using the libaom_av1_{en|de}coder_absent.cc files, we don't
need scalable_video_controller as a dependency.
Both of these changes should be upstreamable.
Depends on D133406
Assignee | ||
Comment 4•3 years ago
|
||
Depends on D133407
Assignee | ||
Comment 5•3 years ago
|
||
Depends on D133408
Comment 7•3 years ago
|
||
bugherder |
https://hg.mozilla.org/mozilla-central/rev/6eed9b1dfa1d
https://hg.mozilla.org/mozilla-central/rev/1c31dce53dff
https://hg.mozilla.org/mozilla-central/rev/4424fcfae2bf
https://hg.mozilla.org/mozilla-central/rev/724151aa470d
https://hg.mozilla.org/mozilla-central/rev/38c455e19287
Description
•