gecko-dev/python
Chun-Min Chang f64dbf04f0 Bug 1920813 - Add performance test for WebCodecs video encoding r=perftest-reviewers,media-playback-reviewers,aosmond,padenot,sparky
This patch introduces performance tests to evaluate the video encoding
performance in two usage scenarios: *Realtime* and *Record*. Each
scenario assesses the encoding using two key metrics:

1. Frame Encoding Latency: The time from encoding a single frame to
   receiving its encoded result
2. Total Encoding Time: The duration from the first encoding request to
   the reception of the last encoded result

In the *Realtime* scenario, minimizing the latency for each frame is
crucial. This metric is essential for applications like live streaming
and video conferencing, where timely delivery of each frame impacts user
experience.

In contrast, the *Record* scenarios prioritizes the total encoding time.
Here, the focus is on processing the entire sequence efficiently to
produce the final output.

By adding these tests, we aim to thoroughly assess and optimize the
encoder's performance under both scenarios, ensuring Gecko provides the
experience users expect.

Differential Revision: https://phabricator.services.mozilla.com/D224999
2024-10-25 21:43:26 +00:00
..
docs Bug 1920152 - Doc updates for ./mach vendor python r=ahal 2024-10-03 14:47:59 +00:00
gdbpp/gdbpp
l10n Bug 1921539 - Sidebar button has no label when moved to the overflow menu r=sidebar-reviewers,fluent-reviewers,Gijs,sclements 2024-10-01 14:30:04 +00:00
lldbutils
mach Bug 1897186 - Add fenix and focus tests to mach test. r=nalexander,ohall,jmaher 2024-10-22 16:49:36 +00:00
mozboot Bug 1926968 - Update to Android NDK r27c. r=geckoview-reviewers,calu 2024-10-25 15:59:16 +00:00
mozbuild Bug 1917685 - Merge minidump-analyzer into the crash reporter client r=gsvelto,fluent-reviewers 2024-10-23 13:58:12 +00:00
mozlint
mozperftest Bug 1920813 - Add performance test for WebCodecs video encoding r=perftest-reviewers,media-playback-reviewers,aosmond,padenot,sparky 2024-10-25 21:43:26 +00:00
mozrelease Bug 1926340 - use push-to-vcs for scriptworker-canary. r=releng-reviewers,bhearsum DONTBUILD 2024-10-22 16:28:56 +00:00
mozterm
mozversioncontrol Bug 1925399 - Add a force flag to add_remove_files in mozversioncontrol r=sheehan 2024-10-18 02:16:10 +00:00
sites Bug 1923577 - Bump aioquic to 1.2.0. r=jgraham 2024-10-11 08:58:47 +00:00
mach_commands.py
moz.build
README

This directory contains common Python code.

The basic rule is that if Python code is cross-module (that's "module" in the
Mozilla meaning - as in "module ownership") and is MPL-compatible, it should
go here.

What should not go here:

* Vendored python modules (use third_party/python instead)
* Python that is not MPL-compatible (see other-licenses/)
* Python that has good reason to remain close to its "owning" (Mozilla)
  module (e.g. it is only being consumed from there).

Historical information can be found at
https://bugzilla.mozilla.org/show_bug.cgi?id=775243
https://bugzilla.mozilla.org/show_bug.cgi?id=1346025