Skip to content
Snippets Groups Projects
Commit bc05aded authored by Chih-Yu Huang's avatar Chih-Yu Huang
Browse files

test: Make E2E test support V4L2DecodeComponent

This CL changes the E2E test to support the V4L2DecodeComponent and
the old C2VDAComponent.

Bug: 153403351
Test: Run E2E test and check V4L2DecodeComponent is running

Change-Id: Ib4658cfc5b297a3f6ec2de6530b4f31a1531211f
parent 43ebfc8d
No related branches found
No related tags found
No related merge requests found
......@@ -33,11 +33,11 @@ constexpr size_t kTimeoutMaxRetries = 500;
std::vector<const char*> GetC2VideoDecoderNames(VideoCodecType type) {
switch (type) {
case VideoCodecType::H264:
return {"c2.vda.avc.decoder", "ARC.h264.decode"};
return {"c2.v4l2.avc.decoder", "c2.vda.avc.decoder"};
case VideoCodecType::VP8:
return {"c2.vda.vp8.decoder", "ARC.vp8.decode"};
return {"c2.v4l2.vp8.decoder", "c2.vda.vp8.decoder"};
case VideoCodecType::VP9:
return {"c2.vda.vp9.decoder", "ARC.vp9.decode"};
return {"c2.v4l2.vp9.decoder", "c2.vda.vp9.decoder"};
default: // unknown type
return {};
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment