Commit 3b49b072 authored by Zhaoliang Ma's avatar Zhaoliang Ma Committed by Commit Bot

media/gpu/V4L2VEA, VaapiVEA: Fix Spatial layer encoding log

Bug: None
Change-Id: I82107c410e016c1303828a91be1fd2e277b9333d
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2506277
Commit-Queue: Hirokazu Honda <hiroh@chromium.org>
Reviewed-by: default avatarHirokazu Honda <hiroh@chromium.org>
Cr-Commit-Position: refs/heads/master@{#822075}
parent 98d81e33
...@@ -207,7 +207,7 @@ bool V4L2VideoEncodeAccelerator::Initialize(const Config& config, ...@@ -207,7 +207,7 @@ bool V4L2VideoEncodeAccelerator::Initialize(const Config& config,
// V4L2VEA doesn't support temporal layers but we let it pass here to support // V4L2VEA doesn't support temporal layers but we let it pass here to support
// simulcast. // simulcast.
if (config.HasSpatialLayer()) { if (config.HasSpatialLayer()) {
VLOGF(1) << "Spatial layer encoding is supported"; VLOGF(1) << "Spatial layer encoding is not yet supported";
return false; return false;
} }
......
...@@ -271,7 +271,7 @@ bool VaapiVideoEncodeAccelerator::Initialize(const Config& config, ...@@ -271,7 +271,7 @@ bool VaapiVideoEncodeAccelerator::Initialize(const Config& config,
// VaapiVEA supports temporal layers for VP9 only, but we also allow VP8 to // VaapiVEA supports temporal layers for VP9 only, but we also allow VP8 to
// support VP8 simulcast. // support VP8 simulcast.
if (config.HasSpatialLayer()) { if (config.HasSpatialLayer()) {
VLOGF(1) << "Spatial layer encoding is supported"; VLOGF(1) << "Spatial layer encoding is not yet supported";
return false; return false;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment