Fix AV1 VA-API encoder crash on AMD/Mesa by initializing DPB for keyframes [chromium/src : main]

0 views
Skip to first unread message

Helmut Januschka (Gerrit)

unread,
Jan 25, 2026, 3:14:16 AMJan 25
to Helmut Januschka, Jerome Jiang, Mirko Bonadei, AyeAye, Eugene Zemtsov, Andres Calderon Jaramillo, Ted (Chromium) Meyer, James Zern, Dale Curtis, Chromium LUCI CQ, chromium...@chromium.org, devtools...@chromium.org, cblume...@chromium.org, chrome-intell...@chromium.org, jz...@chromium.org, chrome-intelligence-te...@google.com, fuzzin...@chromium.org, fgal...@chromium.org, mar...@chromium.org, penghuan...@chromium.org, chromeos-gfx-...@google.com, feature-me...@chromium.org, media-cro...@chromium.org, vaapi-...@chromium.org
Attention needed from Andres Calderon Jaramillo

Helmut Januschka added 1 comment

Patchset-level comments
File-level comment, Patchset 18 (Latest):
Helmut Januschka . resolved

@tmath...@chromium.org - changed to a "only use defaults if 0" approach, could you take a look if that would be more feasable and less limited/magic?

Open in Gerrit

Related details

Attention is currently required from:
  • Andres Calderon Jaramillo
Submit Requirements:
  • requirement satisfiedCode-Coverage
  • requirement is not satisfiedCode-Owners
  • requirement is not satisfiedCode-Review
  • requirement is not satisfiedNo-Unresolved-Comments
  • requirement is not satisfiedReview-Enforcement
Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. DiffyGerrit
Gerrit-MessageType: comment
Gerrit-Project: chromium/src
Gerrit-Branch: main
Gerrit-Change-Id: Ice63b82c4158713ece09771a02998a9ab980d6c0
Gerrit-Change-Number: 7380014
Gerrit-PatchSet: 18
Gerrit-Owner: Helmut Januschka <hel...@januschka.com>
Gerrit-Reviewer: Andres Calderon Jaramillo <andr...@chromium.org>
Gerrit-Reviewer: Helmut Januschka <hel...@januschka.com>
Gerrit-Reviewer: Ted (Chromium) Meyer <tmath...@chromium.org>
Gerrit-CC: Dale Curtis <dalec...@chromium.org>
Gerrit-CC: Eugene Zemtsov <eug...@chromium.org>
Gerrit-CC: James Zern <jz...@google.com>
Gerrit-CC: Jerome Jiang <ji...@chromium.org>
Gerrit-CC: Mirko Bonadei <mbon...@chromium.org>
Gerrit-Attention: Andres Calderon Jaramillo <andr...@chromium.org>
Gerrit-Comment-Date: Sun, 25 Jan 2026 08:13:57 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
satisfied_requirement
unsatisfied_requirement
open
diffy

Ted (Chromium) Meyer (Gerrit)

unread,
Jan 27, 2026, 1:33:29 PMJan 27
to Helmut Januschka, Jerome Jiang, Mirko Bonadei, AyeAye, Eugene Zemtsov, Andres Calderon Jaramillo, James Zern, Dale Curtis, Chromium LUCI CQ, chromium...@chromium.org, devtools...@chromium.org, cblume...@chromium.org, chrome-intell...@chromium.org, jz...@chromium.org, chrome-intelligence-te...@google.com, fuzzin...@chromium.org, fgal...@chromium.org, mar...@chromium.org, penghuan...@chromium.org, chromeos-gfx-...@google.com, feature-me...@chromium.org, media-cro...@chromium.org, vaapi-...@chromium.org
Attention needed from Andres Calderon Jaramillo and Helmut Januschka

Ted (Chromium) Meyer added 10 comments

Patchset-level comments
Ted (Chromium) Meyer . resolved

Looks mostly good, just remove some superfluous comments and fix up the signed int types.

Commit Message
Line 9, Patchset 18 (Latest): The GPU process crashes (exit_code=8) when initializing the AV1 VA-API
encoder on AMD GPUs with Mesa drivers. This occurs because AMD's
stateless AV1 encoder driver is sensitive to the DPB (Decoded Picture
Buffer) state and may access reference frame slots even when encoding
a keyframe.

This CL also changes the handling of 0 framerate and 0 bitrate values:
- 0 is now treated as "use default" rather than enforcing a minimum
- Framerate defaults to VideoEncodeAccelerator::kDefaultFramerate (30fps)
- Bitrate defaults to 100 kbps
- Explicitly requested low values (e.g., 50 kbps) are now respected

This allows callers like WebRTC to signal "encoder's choice" when the
actual values are not yet known, while still supporting explicit low
bitrate/framerate configurations for WebCodecs use cases.
Ted (Chromium) Meyer . unresolved

I recommend just un-indenting this manually or the auto-formatter will do weird things to it.

File media/gpu/vaapi/av1_vaapi_video_encoder_delegate.cc
Line 503, Patchset 18 (Latest):constexpr int kDefaultBitrateKbps = 100;
Ted (Chromium) Meyer . unresolved

unsigned type

Line 512, Patchset 18 (Latest):constexpr int kAmdWarmupFrameCount = 15; // ~0.5 seconds at 30fps for QP limit
Ted (Chromium) Meyer . unresolved

unsigned type

Line 544, Patchset 18 (Latest): int target_bandwidth_kbps =
Ted (Chromium) Meyer . unresolved

uint32

Line 570, Patchset 18 (Latest): int layer_bitrate_kbps = bitrate_sum / 1000;
Ted (Chromium) Meyer . unresolved

Change this (and bitrate_sum) to uint64_t. `bitrate_allocation.GetBitrateBps` already returns an unsigned 32 bit int, so there should never be a case where this is negative.

Then you can drop the " > 0" component in your expression below.

Line 778, Patchset 18 (Latest): // Log order_hint for AMD debugging
Ted (Chromium) Meyer . unresolved

remove

Line 796, Patchset 18 (Latest): // Warm-up logging for AMD/Mesa debugging (crbug.com/471780477).
Ted (Chromium) Meyer . unresolved

remove.

Line 1000, Patchset 18 (Latest): // Log DPB state after update for AMD debugging
Ted (Chromium) Meyer . unresolved

remove

Line 1337, Patchset 18 (Latest): // Log frame header parameters for AMD debugging
Ted (Chromium) Meyer . unresolved

remove

Open in Gerrit

Related details

Attention is currently required from:
  • Andres Calderon Jaramillo
  • Helmut Januschka
Gerrit-Attention: Helmut Januschka <hel...@januschka.com>
Gerrit-Attention: Andres Calderon Jaramillo <andr...@chromium.org>
Gerrit-Comment-Date: Tue, 27 Jan 2026 18:33:17 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
satisfied_requirement
unsatisfied_requirement
open
diffy

Helmut Januschka (Gerrit)

unread,
Jan 28, 2026, 6:11:56 PMJan 28
to Helmut Januschka, Jerome Jiang, Mirko Bonadei, AyeAye, Eugene Zemtsov, Andres Calderon Jaramillo, Ted (Chromium) Meyer, James Zern, Dale Curtis, Chromium LUCI CQ, chromium...@chromium.org, devtools...@chromium.org, cblume...@chromium.org, chrome-intell...@chromium.org, jz...@chromium.org, chrome-intelligence-te...@google.com, fuzzin...@chromium.org, fgal...@chromium.org, mar...@chromium.org, penghuan...@chromium.org, chromeos-gfx-...@google.com, feature-me...@chromium.org, media-cro...@chromium.org, vaapi-...@chromium.org
Attention needed from Andres Calderon Jaramillo and Ted (Chromium) Meyer

Helmut Januschka added 12 comments

Patchset-level comments
Ted (Chromium) Meyer . resolved

I mostly have concerns over the use of default values here. I'm not sure it makes a lot of sense for different codecs' encoder delegates to handle default values differently. If I ask for a 50Kbps video in h264 vs av1, we _should_ probably get the same bitrate out of our encoders, whether or not we decide if there is a minimum.

Helmut Januschka

you're right that silently adjusting the bitrate is surprising. The issue is that AV1 on AMD/Mesa produces unusable output at very low bitrates, frames that decoders outright reject, not just low-quality video.

WebRTC sometimes sends zero/very-low bitrate during startup, and failing would break the stream entirely. so the 100 is just a "safe" min. and the log atleast gives a hint.

Ted (Chromium) Meyer

It's my understanding that webrtc isn't the only user of these encoders. I took a cursory look through the bug, but wasn't able to find out what kind of very-low/non-zero framerates we're talking about, or where the threshold is for outputting crap frames.

Also, it might be good to update the commit message to mention that this CL is changing the meaning of 0FPS and 0Kbps in addition to the dpb frame fix.

Helmut Januschka

Done

Commit Message
Line 9, Patchset 18: The GPU process crashes (exit_code=8) when initializing the AV1 VA-API

encoder on AMD GPUs with Mesa drivers. This occurs because AMD's
stateless AV1 encoder driver is sensitive to the DPB (Decoded Picture
Buffer) state and may access reference frame slots even when encoding
a keyframe.

This CL also changes the handling of 0 framerate and 0 bitrate values:
- 0 is now treated as "use default" rather than enforcing a minimum
- Framerate defaults to VideoEncodeAccelerator::kDefaultFramerate (30fps)
- Bitrate defaults to 100 kbps
- Explicitly requested low values (e.g., 50 kbps) are now respected

This allows callers like WebRTC to signal "encoder's choice" when the
actual values are not yet known, while still supporting explicit low
bitrate/framerate configurations for WebCodecs use cases.
Ted (Chromium) Meyer . resolved

I recommend just un-indenting this manually or the auto-formatter will do weird things to it.

Helmut Januschka

Done

File media/gpu/vaapi/av1_vaapi_video_encoder_delegate.cc
Line 452, Patchset 15: if (current_params_.framerate == 0) {
Ted (Chromium) Meyer . resolved

I'm not an expert on the encoder pipeline, but `current_params_` seems like something controlled by whatever JS call is attempting to do encoding. Does it not make sense to move default value handling to the VideoEncodeAccelerator::Config structure? Shouldn't all encoders have these same defaults, assuming they're good defaults to have? Maybe a user-supplied zero frame rate encode request _should_ fail?

Helmut Januschka

VideoEncodeAccelerator already defines `kDefaultFramerate = 30` (https://source.chromium.org/chromium/chromium/src/+/main:media/video/video_encode_accelerator.h;l=231?q=kDefaultFramerate%20%3D%2030%20file:video_encode_accelerator.h&ss=chromium%2Fchromium%2Fsrc), so there's precedent for this default. I could change this to use that constant instead of a magic 30 to make it clearer this is an intentional fallback.

As for whether zero framerate should fail: in WebRTC scenarios, the framerate can legitimately be unknown at initialization time. Failing would break these use cases.

Ted (Chromium) Meyer

I suppose I am ok with treating 0 for framerate (and bitrate) as a "do whatever you think is best mr. encoder" message. Maybe it makes sense to ensure that they are both zero to enable this behavior? So if the caller requests 50Kbps and 0FPS, they get a legitimate error, since that makes no sense. If both are zero, then use defaults.

Helmut Januschka

I considered requiring both to be zero, but WebRTC can legitimately have one known and one unknown at init time (e.g.,known target bitrate but unknown framerate). Treating each independently seems more flexible for real-world scenarios.

Line 501, Patchset 15:// 100 kbps is a reasonable minimum for low-resolution video.
constexpr int kMinTargetBitrateKbps = 100;
Ted (Chromium) Meyer . resolved

As far as I am aware, webcodecs allows these encoders to be used via some JS calls (@eugene, is this correct?). This seems like a very webrtc specific set of minimum values. It's conceivable that someone might truly want video under 100Kbps, what is the reasoning for deciding this is a "reasonable" minimum? Do other encoders have this same minimum?

Helmut Januschka

100Kbps was the value that made the pipeline stable in testing. The real issue is that WebRTC shows up with 0 bitrate during startup, which breaks the AV1 encoder on AMD/Mesa, it produces frames that decoders reject entirely.

I don't have strong evidence that 100Kbps is the "right" minimum vs something lower like 50Kbps. The goal was just to ensure a non-zero value gets to the encoder.

Happy to lower it to 50Kbps if that seems more reasonable for WebCodecs use cases.

Or alternatively, I could change the check to only kick in when bitrate is literally 0, rather than enforcing a minimum. WDYT?

Ted (Chromium) Meyer

My gut feeling here is that "zero -> 100" is better than "max(value, 100)", since webrtc isn't the only thing using this file, and undocumented codec/platform specific combinations are going to be a debugging nightmare later. It a perfect world, this would be an optional<int>, so webrtc could legitimately say "give me whatever you think it should be", while still allowing anyone to explicitly set a value to whatever they'd like. Treating 0 as that optional is probably ok though, since it does not actually make sense to have a 0Kbps video.

Helmut Januschka

Done

Line 503, Patchset 18:constexpr int kDefaultBitrateKbps = 100;
Ted (Chromium) Meyer . resolved

unsigned type

Helmut Januschka

Done

Line 512, Patchset 18:constexpr int kAmdWarmupFrameCount = 15; // ~0.5 seconds at 30fps for QP limit
Ted (Chromium) Meyer . resolved

unsigned type

Helmut Januschka

Done

Line 544, Patchset 18: int target_bandwidth_kbps =
Ted (Chromium) Meyer . resolved

uint32

Helmut Januschka

Done

Line 570, Patchset 18: int layer_bitrate_kbps = bitrate_sum / 1000;
Ted (Chromium) Meyer . resolved

Change this (and bitrate_sum) to uint64_t. `bitrate_allocation.GetBitrateBps` already returns an unsigned 32 bit int, so there should never be a case where this is negative.

Then you can drop the " > 0" component in your expression below.

Helmut Januschka

Done

Line 778, Patchset 18: // Log order_hint for AMD debugging
Ted (Chromium) Meyer . resolved

remove

Helmut Januschka

Done

Line 796, Patchset 18: // Warm-up logging for AMD/Mesa debugging (crbug.com/471780477).
Ted (Chromium) Meyer . resolved

remove.

Helmut Januschka

Done

Line 1000, Patchset 18: // Log DPB state after update for AMD debugging
Ted (Chromium) Meyer . resolved

remove

Helmut Januschka

Done

Line 1337, Patchset 18: // Log frame header parameters for AMD debugging
Ted (Chromium) Meyer . resolved

remove

Helmut Januschka

Done

Open in Gerrit

Related details

Attention is currently required from:
  • Andres Calderon Jaramillo
  • Ted (Chromium) Meyer
Submit Requirements:
    • requirement satisfiedCode-Coverage
    • requirement is not satisfiedCode-Owners
    • requirement is not satisfiedCode-Review
    • requirement is not satisfiedReview-Enforcement
    Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. DiffyGerrit
    Gerrit-MessageType: comment
    Gerrit-Project: chromium/src
    Gerrit-Branch: main
    Gerrit-Change-Id: Ice63b82c4158713ece09771a02998a9ab980d6c0
    Gerrit-Change-Number: 7380014
    Gerrit-PatchSet: 21
    Gerrit-Owner: Helmut Januschka <hel...@januschka.com>
    Gerrit-Reviewer: Andres Calderon Jaramillo <andr...@chromium.org>
    Gerrit-Reviewer: Helmut Januschka <hel...@januschka.com>
    Gerrit-Reviewer: Ted (Chromium) Meyer <tmath...@chromium.org>
    Gerrit-CC: Dale Curtis <dalec...@chromium.org>
    Gerrit-CC: Eugene Zemtsov <eug...@chromium.org>
    Gerrit-CC: James Zern <jz...@google.com>
    Gerrit-CC: Jerome Jiang <ji...@chromium.org>
    Gerrit-CC: Mirko Bonadei <mbon...@chromium.org>
    Gerrit-Attention: Ted (Chromium) Meyer <tmath...@chromium.org>
    Gerrit-Attention: Andres Calderon Jaramillo <andr...@chromium.org>
    Gerrit-Comment-Date: Wed, 28 Jan 2026 23:11:42 +0000
    Gerrit-HasComments: Yes
    Gerrit-Has-Labels: No
    Comment-In-Reply-To: Helmut Januschka <hel...@januschka.com>
    Comment-In-Reply-To: Ted (Chromium) Meyer <tmath...@chromium.org>
    satisfied_requirement
    unsatisfied_requirement
    open
    diffy

    Ted (Chromium) Meyer (Gerrit)

    unread,
    Jan 28, 2026, 7:20:11 PMJan 28
    to Helmut Januschka, Eugene Zemtsov, Jerome Jiang, Mirko Bonadei, AyeAye, Andres Calderon Jaramillo, James Zern, Dale Curtis, Chromium LUCI CQ, chromium...@chromium.org, devtools...@chromium.org, cblume...@chromium.org, chrome-intell...@chromium.org, jz...@chromium.org, chrome-intelligence-te...@google.com, fuzzin...@chromium.org, fgal...@chromium.org, mar...@chromium.org, penghuan...@chromium.org, chromeos-gfx-...@google.com, feature-me...@chromium.org, media-cro...@chromium.org, vaapi-...@chromium.org
    Attention needed from Andres Calderon Jaramillo, Eugene Zemtsov and Helmut Januschka

    Ted (Chromium) Meyer voted and added 2 comments

    Votes added by Ted (Chromium) Meyer

    Code-Review+1

    2 comments

    Patchset-level comments
    Ted (Chromium) Meyer . resolved

    I'll also add Eugene as a reviewer since he does a lot with encoders.

    File media/gpu/vaapi/av1_vaapi_video_encoder_delegate.cc
    Line 778, Patchset 18: // Log order_hint for AMD debugging
    Ted (Chromium) Meyer . unresolved

    remove

    Helmut Januschka

    Done

    Ted (Chromium) Meyer

    AH! I hadn't intended this to mean "remove the comment" not "remove the log". Comments should be "why" and not "what". The raison d'etre for logs is self evident.

    anyway, you can put the logs back in (though maybe making them DVLOGF(2) or DVLOGF(3) might be a bit better). feel free to leave them out if you don't think it's important though.

    Open in Gerrit

    Related details

    Attention is currently required from:
    • Andres Calderon Jaramillo
    • Eugene Zemtsov
    • Helmut Januschka
    Submit Requirements:
    • requirement satisfiedCode-Coverage
    • requirement satisfiedCode-Owners
    • requirement satisfiedCode-Review
    • requirement is not satisfiedNo-Unresolved-Comments
    • requirement satisfiedReview-Enforcement
    Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. DiffyGerrit
    Gerrit-MessageType: comment
    Gerrit-Project: chromium/src
    Gerrit-Branch: main
    Gerrit-Change-Id: Ice63b82c4158713ece09771a02998a9ab980d6c0
    Gerrit-Change-Number: 7380014
    Gerrit-PatchSet: 21
    Gerrit-Owner: Helmut Januschka <hel...@januschka.com>
    Gerrit-Reviewer: Andres Calderon Jaramillo <andr...@chromium.org>
    Gerrit-Reviewer: Eugene Zemtsov <eug...@chromium.org>
    Gerrit-Reviewer: Helmut Januschka <hel...@januschka.com>
    Gerrit-Reviewer: Ted (Chromium) Meyer <tmath...@chromium.org>
    Gerrit-CC: Dale Curtis <dalec...@chromium.org>
    Gerrit-CC: James Zern <jz...@google.com>
    Gerrit-CC: Jerome Jiang <ji...@chromium.org>
    Gerrit-CC: Mirko Bonadei <mbon...@chromium.org>
    Gerrit-Attention: Helmut Januschka <hel...@januschka.com>
    Gerrit-Attention: Andres Calderon Jaramillo <andr...@chromium.org>
    Gerrit-Attention: Eugene Zemtsov <eug...@chromium.org>
    Gerrit-Comment-Date: Thu, 29 Jan 2026 00:19:58 +0000
    Gerrit-HasComments: Yes
    Gerrit-Has-Labels: Yes
    satisfied_requirement
    unsatisfied_requirement
    open
    diffy

    Helmut Januschka (Gerrit)

    unread,
    Jan 28, 2026, 7:38:54 PMJan 28
    to Helmut Januschka, Eugene Zemtsov, Ted (Chromium) Meyer, Jerome Jiang, Mirko Bonadei, AyeAye, Andres Calderon Jaramillo, James Zern, Dale Curtis, Chromium LUCI CQ, chromium...@chromium.org, devtools...@chromium.org, cblume...@chromium.org, chrome-intell...@chromium.org, jz...@chromium.org, chrome-intelligence-te...@google.com, fuzzin...@chromium.org, fgal...@chromium.org, mar...@chromium.org, penghuan...@chromium.org, chromeos-gfx-...@google.com, feature-me...@chromium.org, media-cro...@chromium.org, vaapi-...@chromium.org
    Attention needed from Andres Calderon Jaramillo and Eugene Zemtsov

    Helmut Januschka added 1 comment

    File media/gpu/vaapi/av1_vaapi_video_encoder_delegate.cc
    Line 778, Patchset 18: // Log order_hint for AMD debugging
    Ted (Chromium) Meyer . resolved

    remove

    Helmut Januschka

    Done

    Ted (Chromium) Meyer

    AH! I hadn't intended this to mean "remove the comment" not "remove the log". Comments should be "why" and not "what". The raison d'etre for logs is self evident.

    anyway, you can put the logs back in (though maybe making them DVLOGF(2) or DVLOGF(3) might be a bit better). feel free to leave them out if you don't think it's important though.

    Helmut Januschka

    oh my fault, yes they will be usefull for "me in 3 months" 😂

    Open in Gerrit

    Related details

    Attention is currently required from:
    • Andres Calderon Jaramillo
    • Eugene Zemtsov
    Submit Requirements:
      • requirement satisfiedCode-Coverage
      • requirement satisfiedCode-Owners
      • requirement satisfiedCode-Review
      • requirement satisfiedReview-Enforcement
      Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. DiffyGerrit
      Gerrit-MessageType: comment
      Gerrit-Project: chromium/src
      Gerrit-Branch: main
      Gerrit-Change-Id: Ice63b82c4158713ece09771a02998a9ab980d6c0
      Gerrit-Change-Number: 7380014
      Gerrit-PatchSet: 22
      Gerrit-Owner: Helmut Januschka <hel...@januschka.com>
      Gerrit-Reviewer: Andres Calderon Jaramillo <andr...@chromium.org>
      Gerrit-Reviewer: Eugene Zemtsov <eug...@chromium.org>
      Gerrit-Reviewer: Helmut Januschka <hel...@januschka.com>
      Gerrit-Reviewer: Ted (Chromium) Meyer <tmath...@chromium.org>
      Gerrit-CC: Dale Curtis <dalec...@chromium.org>
      Gerrit-CC: James Zern <jz...@google.com>
      Gerrit-CC: Jerome Jiang <ji...@chromium.org>
      Gerrit-CC: Mirko Bonadei <mbon...@chromium.org>
      Gerrit-Attention: Andres Calderon Jaramillo <andr...@chromium.org>
      Gerrit-Attention: Eugene Zemtsov <eug...@chromium.org>
      Gerrit-Comment-Date: Thu, 29 Jan 2026 00:38:36 +0000
      Gerrit-HasComments: Yes
      Gerrit-Has-Labels: No
      satisfied_requirement
      open
      diffy

      Hirokazu Honda (Gerrit)

      unread,
      Jan 28, 2026, 10:45:13 PMJan 28
      to Helmut Januschka, Eugene Zemtsov, Ted (Chromium) Meyer, Jerome Jiang, Mirko Bonadei, AyeAye, Andres Calderon Jaramillo, James Zern, Dale Curtis, Chromium LUCI CQ, chromium...@chromium.org, devtools...@chromium.org, cblume...@chromium.org, chrome-intell...@chromium.org, jz...@chromium.org, chrome-intelligence-te...@google.com, fuzzin...@chromium.org, fgal...@chromium.org, mar...@chromium.org, penghuan...@chromium.org, chromeos-gfx-...@google.com, feature-me...@chromium.org, media-cro...@chromium.org, vaapi-...@chromium.org
      Attention needed from Andres Calderon Jaramillo and Helmut Januschka

      Hirokazu Honda added 1 comment

      Patchset-level comments
      File-level comment, Patchset 22 (Latest):
      Hirokazu Honda . resolved

      Hi, I am a bit swarmed these days but I will review this in a week if that's ok.

      Open in Gerrit

      Related details

      Attention is currently required from:
      • Andres Calderon Jaramillo
      • Helmut Januschka
      Submit Requirements:
      • requirement satisfiedCode-Coverage
      • requirement satisfiedCode-Owners
      • requirement satisfiedCode-Review
      • requirement satisfiedReview-Enforcement
      Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. DiffyGerrit
      Gerrit-MessageType: comment
      Gerrit-Project: chromium/src
      Gerrit-Branch: main
      Gerrit-Change-Id: Ice63b82c4158713ece09771a02998a9ab980d6c0
      Gerrit-Change-Number: 7380014
      Gerrit-PatchSet: 22
      Gerrit-Owner: Helmut Januschka <hel...@januschka.com>
      Gerrit-Reviewer: Andres Calderon Jaramillo <andr...@chromium.org>
      Gerrit-Reviewer: Eugene Zemtsov <eug...@chromium.org>
      Gerrit-Reviewer: Helmut Januschka <hel...@januschka.com>
      Gerrit-Reviewer: Hirokazu Honda <hi...@chromium.org>
      Gerrit-Reviewer: Ted (Chromium) Meyer <tmath...@chromium.org>
      Gerrit-CC: Dale Curtis <dalec...@chromium.org>
      Gerrit-CC: James Zern <jz...@google.com>
      Gerrit-CC: Jerome Jiang <ji...@chromium.org>
      Gerrit-CC: Mirko Bonadei <mbon...@chromium.org>
      Gerrit-Attention: Helmut Januschka <hel...@januschka.com>
      Gerrit-Attention: Andres Calderon Jaramillo <andr...@chromium.org>
      Gerrit-Comment-Date: Thu, 29 Jan 2026 03:45:02 +0000
      Gerrit-HasComments: Yes
      Gerrit-Has-Labels: No
      satisfied_requirement
      open
      diffy

      Helmut Januschka (Gerrit)

      unread,
      Jan 29, 2026, 2:23:18 AMJan 29
      to Helmut Januschka, Hirokazu Honda, Eugene Zemtsov, Ted (Chromium) Meyer, Jerome Jiang, Mirko Bonadei, AyeAye, Andres Calderon Jaramillo, James Zern, Dale Curtis, Chromium LUCI CQ, chromium...@chromium.org, devtools...@chromium.org, cblume...@chromium.org, chrome-intell...@chromium.org, jz...@chromium.org, chrome-intelligence-te...@google.com, fuzzin...@chromium.org, fgal...@chromium.org, mar...@chromium.org, penghuan...@chromium.org, chromeos-gfx-...@google.com, feature-me...@chromium.org, media-cro...@chromium.org, vaapi-...@chromium.org
      Attention needed from Andres Calderon Jaramillo and Hirokazu Honda

      Helmut Januschka added 1 comment

      Patchset-level comments
      Hirokazu Honda . resolved

      Hi, I am a bit swarmed these days but I will review this in a week if that's ok.

      Helmut Januschka

      no stress! appreciate your help!

      Open in Gerrit

      Related details

      Attention is currently required from:
      • Andres Calderon Jaramillo
      • Hirokazu Honda
      Gerrit-Attention: Hirokazu Honda <hi...@chromium.org>
      Gerrit-Attention: Andres Calderon Jaramillo <andr...@chromium.org>
      Gerrit-Comment-Date: Thu, 29 Jan 2026 07:23:05 +0000
      Gerrit-HasComments: Yes
      Gerrit-Has-Labels: No
      Comment-In-Reply-To: Hirokazu Honda <hi...@chromium.org>
      satisfied_requirement
      open
      diffy

      Helmut Januschka (Gerrit)

      unread,
      Feb 6, 2026, 10:51:08 AMFeb 6
      to Helmut Januschka, Hirokazu Honda, Eugene Zemtsov, Ted (Chromium) Meyer, Jerome Jiang, Mirko Bonadei, AyeAye, Andres Calderon Jaramillo, James Zern, Dale Curtis, Chromium LUCI CQ, chromium...@chromium.org, devtools...@chromium.org, cblume...@chromium.org, chrome-intell...@chromium.org, jz...@chromium.org, chrome-intelligence-te...@google.com, fuzzin...@chromium.org, fgal...@chromium.org, mar...@chromium.org, penghuan...@chromium.org, chromeos-gfx-...@google.com, feature-me...@chromium.org, media-cro...@chromium.org, vaapi-...@chromium.org
      Attention needed from Andres Calderon Jaramillo and Hirokazu Honda

      Helmut Januschka added 1 comment

      Patchset-level comments
      Helmut Januschka . resolved

      @hi...@chromium.org ping, thanks!

      Gerrit-Comment-Date: Fri, 06 Feb 2026 15:50:50 +0000
      Gerrit-HasComments: Yes
      Gerrit-Has-Labels: No
      satisfied_requirement
      open
      diffy

      Hirokazu Honda (Gerrit)

      unread,
      Feb 6, 2026, 6:03:16 PMFeb 6
      to Helmut Januschka, Eugene Zemtsov, Ted (Chromium) Meyer, Jerome Jiang, Mirko Bonadei, AyeAye, Andres Calderon Jaramillo, James Zern, Dale Curtis, Chromium LUCI CQ, chromium...@chromium.org, devtools...@chromium.org, cblume...@chromium.org, chrome-intell...@chromium.org, jz...@chromium.org, chrome-intelligence-te...@google.com, fuzzin...@chromium.org, fgal...@chromium.org, mar...@chromium.org, penghuan...@chromium.org, chromeos-gfx-...@google.com, feature-me...@chromium.org, media-cro...@chromium.org, vaapi-...@chromium.org
      Attention needed from Andres Calderon Jaramillo and Helmut Januschka

      Hirokazu Honda added 1 comment

      Patchset-level comments
      Hirokazu Honda . resolved

      Supproting a resolutin change in this class seems to be strange.
      VaapiVEA doesn't support the dynamic resolution change.

      If that actually happens, the webrtc encoder client (RTCVideoEncoder) doesn't work as expected.

      Open in Gerrit

      Related details

      Attention is currently required from:
      • Andres Calderon Jaramillo
      • Helmut Januschka
      Gerrit-Attention: Helmut Januschka <hel...@januschka.com>
      Gerrit-Attention: Andres Calderon Jaramillo <andr...@chromium.org>
      Gerrit-Comment-Date: Fri, 06 Feb 2026 23:03:06 +0000
      Gerrit-HasComments: Yes
      Gerrit-Has-Labels: No
      satisfied_requirement
      open
      diffy

      Helmut Januschka (Gerrit)

      unread,
      Feb 7, 2026, 10:25:48 AMFeb 7
      to Helmut Januschka, Hirokazu Honda, Eugene Zemtsov, Ted (Chromium) Meyer, Jerome Jiang, Mirko Bonadei, AyeAye, Andres Calderon Jaramillo, James Zern, Dale Curtis, Chromium LUCI CQ, chromium...@chromium.org, devtools...@chromium.org, cblume...@chromium.org, chrome-intell...@chromium.org, jz...@chromium.org, chrome-intelligence-te...@google.com, fuzzin...@chromium.org, fgal...@chromium.org, mar...@chromium.org, penghuan...@chromium.org, chromeos-gfx-...@google.com, feature-me...@chromium.org, media-cro...@chromium.org, vaapi-...@chromium.org
      Attention needed from Andres Calderon Jaramillo and Hirokazu Honda

      Helmut Januschka voted and added 1 comment

      Votes added by Helmut Januschka

      Commit-Queue+1

      1 comment

      Patchset-level comments
      Hirokazu Honda . resolved

      Supproting a resolutin change in this class seems to be strange.
      VaapiVEA doesn't support the dynamic resolution change.

      If that actually happens, the webrtc encoder client (RTCVideoEncoder) doesn't work as expected.

      Helmut Januschka

      thx, see latest PS

      Open in Gerrit

      Related details

      Attention is currently required from:
      • Andres Calderon Jaramillo
      • Hirokazu Honda
      Submit Requirements:
      • requirement satisfiedCode-Coverage
      • requirement satisfiedCode-Owners
      • requirement satisfiedCode-Review
      • requirement satisfiedReview-Enforcement
      Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. DiffyGerrit
      Gerrit-MessageType: comment
      Gerrit-Project: chromium/src
      Gerrit-Branch: main
      Gerrit-Change-Id: Ice63b82c4158713ece09771a02998a9ab980d6c0
      Gerrit-Change-Number: 7380014
      Gerrit-PatchSet: 23
      Gerrit-Owner: Helmut Januschka <hel...@januschka.com>
      Gerrit-Reviewer: Andres Calderon Jaramillo <andr...@chromium.org>
      Gerrit-Reviewer: Eugene Zemtsov <eug...@chromium.org>
      Gerrit-Reviewer: Helmut Januschka <hel...@januschka.com>
      Gerrit-Reviewer: Hirokazu Honda <hi...@chromium.org>
      Gerrit-Reviewer: Ted (Chromium) Meyer <tmath...@chromium.org>
      Gerrit-CC: Dale Curtis <dalec...@chromium.org>
      Gerrit-CC: James Zern <jz...@google.com>
      Gerrit-CC: Jerome Jiang <ji...@chromium.org>
      Gerrit-CC: Mirko Bonadei <mbon...@chromium.org>
      Gerrit-Attention: Hirokazu Honda <hi...@chromium.org>
      Gerrit-Attention: Andres Calderon Jaramillo <andr...@chromium.org>
      Gerrit-Comment-Date: Sat, 07 Feb 2026 15:25:29 +0000
      Gerrit-HasComments: Yes
      Gerrit-Has-Labels: Yes
      Comment-In-Reply-To: Hirokazu Honda <hi...@chromium.org>
      satisfied_requirement
      open
      diffy

      Hirokazu Honda (Gerrit)

      unread,
      Feb 9, 2026, 3:34:31 PMFeb 9
      to Helmut Januschka, Eugene Zemtsov, Ted (Chromium) Meyer, Jerome Jiang, Mirko Bonadei, AyeAye, Andres Calderon Jaramillo, James Zern, Dale Curtis, Chromium LUCI CQ, chromium...@chromium.org, devtools...@chromium.org, cblume...@chromium.org, chrome-intell...@chromium.org, jz...@chromium.org, chrome-intelligence-te...@google.com, fuzzin...@chromium.org, fgal...@chromium.org, mar...@chromium.org, penghuan...@chromium.org, chromeos-gfx-...@google.com, feature-me...@chromium.org, media-cro...@chromium.org, vaapi-...@chromium.org
      Attention needed from Andres Calderon Jaramillo and Helmut Januschka

      Hirokazu Honda added 2 comments

      Patchset-level comments
      File-level comment, Patchset 23 (Latest):
      Hirokazu Honda . resolved

      Sorry, would you mind splitting this to multiple small piece CLs?
      This CL does multiple things which makes review harder.

      File media/gpu/vaapi/av1_vaapi_video_encoder_delegate.cc
      Line 530, Patchset 23 (Latest): current_params_.bitrate_allocation = bitrate_allocation;
      Hirokazu Honda . unresolved

      Could you rather ignroe the request that framerate or bitrate is zero?

      Open in Gerrit

      Related details

      Attention is currently required from:
      • Andres Calderon Jaramillo
      • Helmut Januschka
      Submit Requirements:
        • requirement satisfiedCode-Coverage
        • requirement satisfiedCode-Owners
        • requirement satisfiedCode-Review
        • requirement is not satisfiedNo-Unresolved-Comments
        • requirement satisfiedReview-Enforcement
        Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. DiffyGerrit
        Gerrit-MessageType: comment
        Gerrit-Project: chromium/src
        Gerrit-Branch: main
        Gerrit-Change-Id: Ice63b82c4158713ece09771a02998a9ab980d6c0
        Gerrit-Change-Number: 7380014
        Gerrit-PatchSet: 23
        Gerrit-Owner: Helmut Januschka <hel...@januschka.com>
        Gerrit-Reviewer: Andres Calderon Jaramillo <andr...@chromium.org>
        Gerrit-Reviewer: Eugene Zemtsov <eug...@chromium.org>
        Gerrit-Reviewer: Helmut Januschka <hel...@januschka.com>
        Gerrit-Reviewer: Hirokazu Honda <hi...@chromium.org>
        Gerrit-Reviewer: Ted (Chromium) Meyer <tmath...@chromium.org>
        Gerrit-CC: Dale Curtis <dalec...@chromium.org>
        Gerrit-CC: James Zern <jz...@google.com>
        Gerrit-CC: Jerome Jiang <ji...@chromium.org>
        Gerrit-CC: Mirko Bonadei <mbon...@chromium.org>
        Gerrit-Attention: Helmut Januschka <hel...@januschka.com>
        Gerrit-Attention: Andres Calderon Jaramillo <andr...@chromium.org>
        Gerrit-Comment-Date: Mon, 09 Feb 2026 20:34:21 +0000
        Gerrit-HasComments: Yes
        Gerrit-Has-Labels: No
        satisfied_requirement
        unsatisfied_requirement
        open
        diffy

        Helmut Januschka (Gerrit)

        unread,
        Feb 9, 2026, 5:44:38 PMFeb 9
        to Helmut Januschka, Hirokazu Honda, Eugene Zemtsov, Ted (Chromium) Meyer, Jerome Jiang, Mirko Bonadei, AyeAye, Andres Calderon Jaramillo, James Zern, Dale Curtis, Chromium LUCI CQ, chromium...@chromium.org, devtools...@chromium.org, cblume...@chromium.org, chrome-intell...@chromium.org, jz...@chromium.org, chrome-intelligence-te...@google.com, fuzzin...@chromium.org, fgal...@chromium.org, mar...@chromium.org, penghuan...@chromium.org, chromeos-gfx-...@google.com, feature-me...@chromium.org, media-cro...@chromium.org, vaapi-...@chromium.org
        Attention needed from Andres Calderon Jaramillo and Hirokazu Honda

        Helmut Januschka added 1 comment

        File media/gpu/vaapi/av1_vaapi_video_encoder_delegate.cc
        Line 530, Patchset 23: current_params_.bitrate_allocation = bitrate_allocation;
        Hirokazu Honda . resolved

        Could you rather ignroe the request that framerate or bitrate is zero?

        Helmut Januschka

        Done

        Open in Gerrit

        Related details

        Attention is currently required from:
        • Andres Calderon Jaramillo
        • Hirokazu Honda
        Submit Requirements:
          • requirement satisfiedCode-Coverage
          • requirement satisfiedCode-Owners
          • requirement satisfiedCode-Review
          • requirement satisfiedReview-Enforcement
          Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. DiffyGerrit
          Gerrit-MessageType: comment
          Gerrit-Project: chromium/src
          Gerrit-Branch: main
          Gerrit-Change-Id: Ice63b82c4158713ece09771a02998a9ab980d6c0
          Gerrit-Change-Number: 7380014
          Gerrit-PatchSet: 24
          Gerrit-Owner: Helmut Januschka <hel...@januschka.com>
          Gerrit-Reviewer: Andres Calderon Jaramillo <andr...@chromium.org>
          Gerrit-Reviewer: Eugene Zemtsov <eug...@chromium.org>
          Gerrit-Reviewer: Helmut Januschka <hel...@januschka.com>
          Gerrit-Reviewer: Hirokazu Honda <hi...@chromium.org>
          Gerrit-Reviewer: Ted (Chromium) Meyer <tmath...@chromium.org>
          Gerrit-CC: Dale Curtis <dalec...@chromium.org>
          Gerrit-CC: James Zern <jz...@google.com>
          Gerrit-CC: Jerome Jiang <ji...@chromium.org>
          Gerrit-CC: Mirko Bonadei <mbon...@chromium.org>
          Gerrit-Attention: Hirokazu Honda <hi...@chromium.org>
          Gerrit-Attention: Andres Calderon Jaramillo <andr...@chromium.org>
          Gerrit-Comment-Date: Mon, 09 Feb 2026 22:44:21 +0000
          Gerrit-HasComments: Yes
          Gerrit-Has-Labels: No
          Comment-In-Reply-To: Hirokazu Honda <hi...@chromium.org>
          satisfied_requirement
          open
          diffy

          Hirokazu Honda (Gerrit)

          unread,
          Feb 9, 2026, 8:07:42 PMFeb 9
          to Helmut Januschka, Eugene Zemtsov, Ted (Chromium) Meyer, Jerome Jiang, Mirko Bonadei, AyeAye, Andres Calderon Jaramillo, James Zern, Dale Curtis, Chromium LUCI CQ, chromium...@chromium.org, devtools...@chromium.org, cblume...@chromium.org, chrome-intell...@chromium.org, jz...@chromium.org, chrome-intelligence-te...@google.com, fuzzin...@chromium.org, fgal...@chromium.org, mar...@chromium.org, penghuan...@chromium.org, chromeos-gfx-...@google.com, feature-me...@chromium.org, media-cro...@chromium.org, vaapi-...@chromium.org
          Attention needed from Andres Calderon Jaramillo and Helmut Januschka

          Hirokazu Honda added 1 comment

          Patchset-level comments
          Hirokazu Honda . resolved

          Sorry, would you mind splitting this to multiple small piece CLs?
          This CL does multiple things which makes review harder.

          Hirokazu Honda

          Hi Helmut, would you mind splitting the CL to multiple small CLs? It would be very helpful for me to review.

          Open in Gerrit

          Related details

          Attention is currently required from:
          • Andres Calderon Jaramillo
          • Helmut Januschka
          Gerrit-Attention: Helmut Januschka <hel...@januschka.com>
          Gerrit-Attention: Andres Calderon Jaramillo <andr...@chromium.org>
          Gerrit-Comment-Date: Tue, 10 Feb 2026 01:07:32 +0000
          satisfied_requirement
          open
          diffy

          Helmut Januschka (Gerrit)

          unread,
          Feb 10, 2026, 6:04:36 PMFeb 10
          to Helmut Januschka, Hirokazu Honda, Eugene Zemtsov, Ted (Chromium) Meyer, Jerome Jiang, Mirko Bonadei, AyeAye, Andres Calderon Jaramillo, James Zern, Dale Curtis, Chromium LUCI CQ, chromium...@chromium.org, devtools...@chromium.org, cblume...@chromium.org, chrome-intell...@chromium.org, jz...@chromium.org, chrome-intelligence-te...@google.com, fuzzin...@chromium.org, fgal...@chromium.org, mar...@chromium.org, penghuan...@chromium.org, chromeos-gfx-...@google.com, feature-me...@chromium.org, media-cro...@chromium.org, vaapi-...@chromium.org
          Attention needed from Andres Calderon Jaramillo and Hirokazu Honda

          Helmut Januschka added 1 comment

          Patchset-level comments
          Hirokazu Honda . resolved

          Sorry, would you mind splitting this to multiple small piece CLs?
          This CL does multiple things which makes review harder.

          Hirokazu Honda

          Hi Helmut, would you mind splitting the CL to multiple small CLs? It would be very helpful for me to review.

          Helmut Januschka

          while i usually just follow reviewers request to split in this case,i can try to split out the color config and robustness defaults into separate CLs, but the core AMD/Mesa changes (DPB, OBU structure, encoder params) are tightly coupled and would need to stay together, would that work for you?

          Open in Gerrit

          Related details

          Attention is currently required from:
          • Andres Calderon Jaramillo
          • Hirokazu Honda
          Gerrit-Attention: Hirokazu Honda <hi...@chromium.org>
          Gerrit-Attention: Andres Calderon Jaramillo <andr...@chromium.org>
          Gerrit-Comment-Date: Tue, 10 Feb 2026 23:04:17 +0000
          satisfied_requirement
          open
          diffy

          Hirokazu Honda (Gerrit)

          unread,
          Feb 10, 2026, 6:56:30 PMFeb 10
          to Helmut Januschka, Eugene Zemtsov, Ted (Chromium) Meyer, Jerome Jiang, Mirko Bonadei, AyeAye, Andres Calderon Jaramillo, James Zern, Dale Curtis, Chromium LUCI CQ, chromium...@chromium.org, devtools...@chromium.org, cblume...@chromium.org, chrome-intell...@chromium.org, jz...@chromium.org, chrome-intelligence-te...@google.com, fuzzin...@chromium.org, fgal...@chromium.org, mar...@chromium.org, penghuan...@chromium.org, chromeos-gfx-...@google.com, feature-me...@chromium.org, media-cro...@chromium.org, vaapi-...@chromium.org
          Attention needed from Andres Calderon Jaramillo and Helmut Januschka

          Hirokazu Honda added 1 comment

          Patchset-level comments
          Hirokazu Honda . resolved

          Sorry, would you mind splitting this to multiple small piece CLs?
          This CL does multiple things which makes review harder.

          Hirokazu Honda

          Hi Helmut, would you mind splitting the CL to multiple small CLs? It would be very helpful for me to review.

          Helmut Januschka

          while i usually just follow reviewers request to split in this case,i can try to split out the color config and robustness defaults into separate CLs, but the core AMD/Mesa changes (DPB, OBU structure, encoder params) are tightly coupled and would need to stay together, would that work for you?

          Hirokazu Honda

          Yes, it would work for me. The tightly coupled change is good hint for me to review.
          I appreciate your understanding. Thanks.

          Open in Gerrit

          Related details

          Attention is currently required from:
          • Andres Calderon Jaramillo
          • Helmut Januschka
          Gerrit-Attention: Helmut Januschka <hel...@januschka.com>
          Gerrit-Attention: Andres Calderon Jaramillo <andr...@chromium.org>
          Gerrit-Comment-Date: Tue, 10 Feb 2026 23:56:20 +0000
          Gerrit-HasComments: Yes
          Gerrit-Has-Labels: No
          Comment-In-Reply-To: Helmut Januschka <hel...@januschka.com>
          Comment-In-Reply-To: Hirokazu Honda <hi...@chromium.org>
          satisfied_requirement
          open
          diffy

          Helmut Januschka (Gerrit)

          unread,
          Feb 18, 2026, 6:45:40 AMFeb 18
          to Helmut Januschka, Hirokazu Honda, Eugene Zemtsov, Ted (Chromium) Meyer, Jerome Jiang, Mirko Bonadei, AyeAye, Andres Calderon Jaramillo, James Zern, Dale Curtis, Chromium LUCI CQ, chromium...@chromium.org, devtools...@chromium.org, cblume...@chromium.org, chrome-intell...@chromium.org, jz...@chromium.org, chrome-intelligence-te...@google.com, fuzzin...@chromium.org, fgal...@chromium.org, mar...@chromium.org, penghuan...@chromium.org, chromeos-gfx-...@google.com, feature-me...@chromium.org, media-cro...@chromium.org, vaapi-...@chromium.org
          Attention needed from Andres Calderon Jaramillo

          Helmut Januschka added 1 comment

          Patchset-level comments
          File-level comment, Patchset 25 (Latest):
          Helmut Januschka . resolved

          @hi...@chromium.org that's the last CL in that bug, the color defaults have been confirmed to be not required, can you continue/finalize review of this CL?

          Open in Gerrit

          Related details

          Attention is currently required from:
          • Andres Calderon Jaramillo
          Submit Requirements:
          • requirement satisfiedCode-Coverage
          • requirement satisfiedCode-Owners
          • requirement satisfiedCode-Review
          • requirement satisfiedReview-Enforcement
          Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. DiffyGerrit
          Gerrit-MessageType: comment
          Gerrit-Project: chromium/src
          Gerrit-Branch: main
          Gerrit-Change-Id: Ice63b82c4158713ece09771a02998a9ab980d6c0
          Gerrit-Change-Number: 7380014
          Gerrit-PatchSet: 25
          Gerrit-Owner: Helmut Januschka <hel...@januschka.com>
          Gerrit-Reviewer: Andres Calderon Jaramillo <andr...@chromium.org>
          Gerrit-Reviewer: Eugene Zemtsov <eug...@chromium.org>
          Gerrit-Reviewer: Helmut Januschka <hel...@januschka.com>
          Gerrit-Reviewer: Hirokazu Honda <hi...@chromium.org>
          Gerrit-Reviewer: Ted (Chromium) Meyer <tmath...@chromium.org>
          Gerrit-CC: Dale Curtis <dalec...@chromium.org>
          Gerrit-CC: James Zern <jz...@google.com>
          Gerrit-CC: Jerome Jiang <ji...@chromium.org>
          Gerrit-CC: Mirko Bonadei <mbon...@chromium.org>
          Gerrit-Attention: Andres Calderon Jaramillo <andr...@chromium.org>
          Gerrit-Comment-Date: Wed, 18 Feb 2026 11:45:22 +0000
          Gerrit-HasComments: Yes
          Gerrit-Has-Labels: No
          satisfied_requirement
          open
          diffy

          Helmut Januschka (Gerrit)

          unread,
          Feb 20, 2026, 3:08:55 PMFeb 20
          to Helmut Januschka, Hirokazu Honda, Eugene Zemtsov, Ted (Chromium) Meyer, Jerome Jiang, Mirko Bonadei, AyeAye, Andres Calderon Jaramillo, James Zern, Dale Curtis, Chromium LUCI CQ, chromium...@chromium.org, devtools...@chromium.org, cblume...@chromium.org, chrome-intell...@chromium.org, jz...@chromium.org, chrome-intelligence-te...@google.com, fuzzin...@chromium.org, fgal...@chromium.org, mar...@chromium.org, penghuan...@chromium.org, chromeos-gfx-...@google.com, feature-me...@chromium.org, media-cro...@chromium.org, vaapi-...@chromium.org
          Attention needed from Andres Calderon Jaramillo and Hirokazu Honda

          Helmut Januschka added 1 comment

          Patchset-level comments
          Helmut Januschka . resolved

          pong!

          Open in Gerrit

          Related details

          Attention is currently required from:
          • Andres Calderon Jaramillo
          • Hirokazu Honda
          Gerrit-Attention: Hirokazu Honda <hi...@chromium.org>
          Gerrit-Attention: Andres Calderon Jaramillo <andr...@chromium.org>
          Gerrit-Comment-Date: Fri, 20 Feb 2026 20:08:42 +0000
          Gerrit-HasComments: Yes
          Gerrit-Has-Labels: No
          satisfied_requirement
          open
          diffy

          Hirokazu Honda (Gerrit)

          unread,
          Feb 20, 2026, 5:11:39 PMFeb 20
          to Helmut Januschka, Eugene Zemtsov, Ted (Chromium) Meyer, Jerome Jiang, Mirko Bonadei, AyeAye, Andres Calderon Jaramillo, James Zern, Dale Curtis, Chromium LUCI CQ, chromium...@chromium.org, devtools...@chromium.org, cblume...@chromium.org, chrome-intell...@chromium.org, jz...@chromium.org, chrome-intelligence-te...@google.com, fuzzin...@chromium.org, fgal...@chromium.org, mar...@chromium.org, penghuan...@chromium.org, chromeos-gfx-...@google.com, feature-me...@chromium.org, media-cro...@chromium.org, vaapi-...@chromium.org
          Attention needed from Andres Calderon Jaramillo and Helmut Januschka

          Hirokazu Honda added 1 comment

          Patchset-level comments
          Helmut Januschka . resolved

          pong!

          Hirokazu Honda

          Sorry for the delay. I will review this CL this weekend.

          Open in Gerrit

          Related details

          Attention is currently required from:
          • Andres Calderon Jaramillo
          • Helmut Januschka
          Gerrit-Attention: Helmut Januschka <hel...@januschka.com>
          Gerrit-Attention: Andres Calderon Jaramillo <andr...@chromium.org>
          Gerrit-Comment-Date: Fri, 20 Feb 2026 22:11:33 +0000
          Gerrit-HasComments: Yes
          Gerrit-Has-Labels: No
          Comment-In-Reply-To: Helmut Januschka <hel...@januschka.com>
          satisfied_requirement
          open
          diffy

          Hirokazu Honda (Gerrit)

          unread,
          Feb 21, 2026, 7:12:43 PMFeb 21
          to Helmut Januschka, Eugene Zemtsov, Ted (Chromium) Meyer, Jerome Jiang, Mirko Bonadei, AyeAye, Andres Calderon Jaramillo, James Zern, Dale Curtis, Chromium LUCI CQ, chromium...@chromium.org, devtools...@chromium.org, cblume...@chromium.org, chrome-intell...@chromium.org, jz...@chromium.org, chrome-intelligence-te...@google.com, fuzzin...@chromium.org, fgal...@chromium.org, mar...@chromium.org, penghuan...@chromium.org, chromeos-gfx-...@google.com, feature-me...@chromium.org, media-cro...@chromium.org, vaapi-...@chromium.org
          Attention needed from Andres Calderon Jaramillo and Helmut Januschka

          Hirokazu Honda added 2 comments

          Patchset-level comments
          Hirokazu Honda . resolved

          Hi Helmut,

          If I understand correctly, what this CL is primrary doing is to add code for doing the workaround for the bugs in the AMD VA-API driver.

          The bugs seems to be too unreasonable to add the workaround in chromium code base.
          I would rather add the AMD driver to the block list for AV1 encoding because they contain bad bugs, rather than adding workarounds (so we can mitigate GPU process crash).
          https://source.chromium.org/chromium/chromium/src/+/main:gpu/config/gpu_driver_bug_list.json

          The right way is to reach out to mesa community to fix the AMD VA-API av1 encoding.

          I hesitate saying above as you took your time to analyze the bug and craft this CL.
          This is my insight though.
          What do you think?

          File media/gpu/vaapi/av1_vaapi_video_encoder_delegate.cc
          Line 594, Patchset 25 (Latest): if (is_mesa_gallium && amd_warmup_frames_encoded_ == 0) {
          VLOGF(1) << "AMD: Forcing keyframe for first frame at "
          << coded_size_.ToString();
          encode_job.ProduceKeyframe();
          }
          Hirokazu Honda . unresolved

          frame_num_ is set to intra_period in Initialize(), so the keyframe is requested on the first frame.
          This is unnecessary in my understanding.
          Could you confirm that?

          Open in Gerrit

          Related details

          Attention is currently required from:
          • Andres Calderon Jaramillo
          • Helmut Januschka
          Submit Requirements:
            • requirement satisfiedCode-Coverage
            • requirement satisfiedCode-Owners
            • requirement satisfiedCode-Review
            • requirement is not satisfiedNo-Unresolved-Comments
            • requirement satisfiedReview-Enforcement
            Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. DiffyGerrit
            Gerrit-MessageType: comment
            Gerrit-Project: chromium/src
            Gerrit-Branch: main
            Gerrit-Change-Id: Ice63b82c4158713ece09771a02998a9ab980d6c0
            Gerrit-Change-Number: 7380014
            Gerrit-PatchSet: 25
            Gerrit-Owner: Helmut Januschka <hel...@januschka.com>
            Gerrit-Reviewer: Andres Calderon Jaramillo <andr...@chromium.org>
            Gerrit-Reviewer: Eugene Zemtsov <eug...@chromium.org>
            Gerrit-Reviewer: Helmut Januschka <hel...@januschka.com>
            Gerrit-Reviewer: Hirokazu Honda <hi...@chromium.org>
            Gerrit-Reviewer: Ted (Chromium) Meyer <tmath...@chromium.org>
            Gerrit-CC: Dale Curtis <dalec...@chromium.org>
            Gerrit-CC: James Zern <jz...@google.com>
            Gerrit-CC: Jerome Jiang <ji...@chromium.org>
            Gerrit-CC: Mirko Bonadei <mbon...@chromium.org>
            Gerrit-Attention: Helmut Januschka <hel...@januschka.com>
            Gerrit-Attention: Andres Calderon Jaramillo <andr...@chromium.org>
            Gerrit-Comment-Date: Sun, 22 Feb 2026 00:12:37 +0000
            Gerrit-HasComments: Yes
            Gerrit-Has-Labels: No
            satisfied_requirement
            unsatisfied_requirement
            open
            diffy

            Helmut Januschka (Gerrit)

            unread,
            Feb 22, 2026, 4:58:10 PMFeb 22
            to Helmut Januschka, Hirokazu Honda, Eugene Zemtsov, Ted (Chromium) Meyer, Jerome Jiang, Mirko Bonadei, AyeAye, Andres Calderon Jaramillo, James Zern, Dale Curtis, Chromium LUCI CQ, chromium...@chromium.org, devtools...@chromium.org, cblume...@chromium.org, chrome-intell...@chromium.org, jz...@chromium.org, chrome-intelligence-te...@google.com, fuzzin...@chromium.org, fgal...@chromium.org, mar...@chromium.org, penghuan...@chromium.org, chromeos-gfx-...@google.com, feature-me...@chromium.org, media-cro...@chromium.org, vaapi-...@chromium.org
            Attention needed from Andres Calderon Jaramillo and Hirokazu Honda

            Helmut Januschka added 1 comment

            Patchset-level comments
            Hirokazu Honda . resolved

            Hi Helmut,

            If I understand correctly, what this CL is primrary doing is to add code for doing the workaround for the bugs in the AMD VA-API driver.

            The bugs seems to be too unreasonable to add the workaround in chromium code base.
            I would rather add the AMD driver to the block list for AV1 encoding because they contain bad bugs, rather than adding workarounds (so we can mitigate GPU process crash).
            https://source.chromium.org/chromium/chromium/src/+/main:gpu/config/gpu_driver_bug_list.json

            The right way is to reach out to mesa community to fix the AMD VA-API av1 encoding.

            I hesitate saying above as you took your time to analyze the bug and craft this CL.
            This is my insight though.
            What do you think?

            Helmut Januschka

            @hi...@chromium.org - no worries, OWNER's right, to keep or kill.
            yes in fact its bypassing/fixing a bug in AMD VA-API driver.


            adding it to block list would ultimatly disable HW accel, i guess.
            do you have any ideas, where to get in contact with mesa community - that honestly feels like a final dead end?!

            cheers

            Open in Gerrit

            Related details

            Attention is currently required from:
            • Andres Calderon Jaramillo
            • Hirokazu Honda
            Gerrit-Attention: Hirokazu Honda <hi...@chromium.org>
            Gerrit-Attention: Andres Calderon Jaramillo <andr...@chromium.org>
            Gerrit-Comment-Date: Sun, 22 Feb 2026 21:57:52 +0000
            Gerrit-HasComments: Yes
            Gerrit-Has-Labels: No
            Comment-In-Reply-To: Hirokazu Honda <hi...@chromium.org>
            satisfied_requirement
            unsatisfied_requirement
            open
            diffy

            Hirokazu Honda (Gerrit)

            unread,
            Feb 23, 2026, 10:31:50 PMFeb 23
            to Helmut Januschka, Eugene Zemtsov, Ted (Chromium) Meyer, Jerome Jiang, Mirko Bonadei, AyeAye, Andres Calderon Jaramillo, James Zern, Dale Curtis, Chromium LUCI CQ, chromium...@chromium.org, devtools...@chromium.org, cblume...@chromium.org, chrome-intell...@chromium.org, jz...@chromium.org, chrome-intelligence-te...@google.com, fuzzin...@chromium.org, fgal...@chromium.org, mar...@chromium.org, penghuan...@chromium.org, chromeos-gfx-...@google.com, feature-me...@chromium.org, media-cro...@chromium.org, vaapi-...@chromium.org
            Attention needed from Andres Calderon Jaramillo and Helmut Januschka

            Hirokazu Honda added 1 comment

            Patchset-level comments
            Hirokazu Honda . resolved

            Hi Helmut,

            If I understand correctly, what this CL is primrary doing is to add code for doing the workaround for the bugs in the AMD VA-API driver.

            The bugs seems to be too unreasonable to add the workaround in chromium code base.
            I would rather add the AMD driver to the block list for AV1 encoding because they contain bad bugs, rather than adding workarounds (so we can mitigate GPU process crash).
            https://source.chromium.org/chromium/chromium/src/+/main:gpu/config/gpu_driver_bug_list.json

            The right way is to reach out to mesa community to fix the AMD VA-API av1 encoding.

            I hesitate saying above as you took your time to analyze the bug and craft this CL.
            This is my insight though.
            What do you think?

            Helmut Januschka

            @hi...@chromium.org - no worries, OWNER's right, to keep or kill.
            yes in fact its bypassing/fixing a bug in AMD VA-API driver.


            adding it to block list would ultimatly disable HW accel, i guess.
            do you have any ideas, where to get in contact with mesa community - that honestly feels like a final dead end?!

            cheers

            Hirokazu Honda

            I replied via primate mail.

            Open in Gerrit

            Related details

            Attention is currently required from:
            • Andres Calderon Jaramillo
            • Helmut Januschka
            Gerrit-Attention: Helmut Januschka <hel...@januschka.com>
            Gerrit-Attention: Andres Calderon Jaramillo <andr...@chromium.org>
            Gerrit-Comment-Date: Tue, 24 Feb 2026 03:31:37 +0000
            Gerrit-HasComments: Yes
            Gerrit-Has-Labels: No
            satisfied_requirement
            unsatisfied_requirement
            open
            diffy

            Helmut Januschka (Gerrit)

            unread,
            Feb 24, 2026, 5:52:47 PMFeb 24
            to Helmut Januschka, Hirokazu Honda, Eugene Zemtsov, Ted (Chromium) Meyer, Jerome Jiang, Mirko Bonadei, AyeAye, Andres Calderon Jaramillo, James Zern, Dale Curtis, Chromium LUCI CQ, chromium...@chromium.org, devtools...@chromium.org, cblume...@chromium.org, chrome-intell...@chromium.org, jz...@chromium.org, chrome-intelligence-te...@google.com, fuzzin...@chromium.org, fgal...@chromium.org, mar...@chromium.org, penghuan...@chromium.org, chromeos-gfx-...@google.com, feature-me...@chromium.org, media-cro...@chromium.org, vaapi-...@chromium.org

            Helmut Januschka abandoned this change.

            View Change

            Abandoned better luck next time :(

            Helmut Januschka abandoned this change

            Related details

            Attention set is empty
            Submit Requirements:
            • requirement satisfiedCode-Coverage
            • requirement satisfiedCode-Review
            • requirement is not satisfiedNo-Unresolved-Comments
            • requirement satisfiedReview-Enforcement
            Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. DiffyGerrit
            Gerrit-MessageType: abandon
            satisfied_requirement
            unsatisfied_requirement
            open
            diffy

            Helmut Januschka (Gerrit)

            unread,
            Feb 24, 2026, 5:53:44 PMFeb 24
            to Helmut Januschka, Hirokazu Honda, Eugene Zemtsov, Ted (Chromium) Meyer, Jerome Jiang, Mirko Bonadei, AyeAye, Andres Calderon Jaramillo, James Zern, Dale Curtis, Chromium LUCI CQ, chromium...@chromium.org, devtools...@chromium.org, cblume...@chromium.org, chrome-intell...@chromium.org, jz...@chromium.org, chrome-intelligence-te...@google.com, fuzzin...@chromium.org, fgal...@chromium.org, mar...@chromium.org, penghuan...@chromium.org, chromeos-gfx-...@google.com, feature-me...@chromium.org, media-cro...@chromium.org, vaapi-...@chromium.org

            Helmut Januschka restored this change

            Related details

            Attention set is empty
            Submit Requirements:
            • requirement satisfiedCode-Coverage
            • requirement satisfiedCode-Owners
            • requirement satisfiedCode-Review
            • requirement is not satisfiedNo-Unresolved-Comments
            • requirement satisfiedReview-Enforcement
            Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. DiffyGerrit
            Gerrit-MessageType: restore
            satisfied_requirement
            unsatisfied_requirement
            open
            diffy

            Helmut Januschka (Gerrit)

            unread,
            Feb 24, 2026, 5:57:51 PMFeb 24
            to Helmut Januschka, Hirokazu Honda, Eugene Zemtsov, Ted (Chromium) Meyer, Jerome Jiang, Mirko Bonadei, AyeAye, Andres Calderon Jaramillo, James Zern, Dale Curtis, Chromium LUCI CQ, chromium...@chromium.org, devtools...@chromium.org, cblume...@chromium.org, chrome-intell...@chromium.org, jz...@chromium.org, chrome-intelligence-te...@google.com, fuzzin...@chromium.org, fgal...@chromium.org, mar...@chromium.org, penghuan...@chromium.org, chromeos-gfx-...@google.com, feature-me...@chromium.org, media-cro...@chromium.org, vaapi-...@chromium.org
            Attention needed from Hirokazu Honda

            Helmut Januschka added 1 comment

            File media/gpu/vaapi/av1_vaapi_video_encoder_delegate.cc
            Line 594, Patchset 25 (Latest): if (is_mesa_gallium && amd_warmup_frames_encoded_ == 0) {
            VLOGF(1) << "AMD: Forcing keyframe for first frame at "
            << coded_size_.ToString();
            encode_job.ProduceKeyframe();
            }
            Hirokazu Honda . resolved

            frame_num_ is set to intra_period in Initialize(), so the keyframe is requested on the first frame.
            This is unnecessary in my understanding.
            Could you confirm that?

            Helmut Januschka

            Done

            Open in Gerrit

            Related details

            Attention is currently required from:
            • Hirokazu Honda
            Submit Requirements:
              • requirement satisfiedCode-Coverage
              • requirement satisfiedCode-Owners
              • requirement satisfiedCode-Review
              • requirement satisfiedReview-Enforcement
              Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. DiffyGerrit
              Gerrit-MessageType: comment
              Gerrit-Project: chromium/src
              Gerrit-Branch: main
              Gerrit-Change-Id: Ice63b82c4158713ece09771a02998a9ab980d6c0
              Gerrit-Change-Number: 7380014
              Gerrit-PatchSet: 25
              Gerrit-Owner: Helmut Januschka <hel...@januschka.com>
              Gerrit-Reviewer: Andres Calderon Jaramillo <andr...@chromium.org>
              Gerrit-Reviewer: Eugene Zemtsov <eug...@chromium.org>
              Gerrit-Reviewer: Helmut Januschka <hel...@januschka.com>
              Gerrit-Reviewer: Hirokazu Honda <hi...@chromium.org>
              Gerrit-Reviewer: Ted (Chromium) Meyer <tmath...@chromium.org>
              Gerrit-CC: Dale Curtis <dalec...@chromium.org>
              Gerrit-CC: James Zern <jz...@google.com>
              Gerrit-CC: Jerome Jiang <ji...@chromium.org>
              Gerrit-CC: Mirko Bonadei <mbon...@chromium.org>
              Gerrit-Attention: Hirokazu Honda <hi...@chromium.org>
              Gerrit-Comment-Date: Tue, 24 Feb 2026 22:57:37 +0000
              Gerrit-HasComments: Yes
              Gerrit-Has-Labels: No
              Comment-In-Reply-To: Hirokazu Honda <hi...@chromium.org>
              satisfied_requirement
              open
              diffy
              Reply all
              Reply to author
              Forward
              0 new messages