aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKazuhiro Inaba <kinaba@google.com>2021-05-12 05:54:58 +0000
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2021-05-12 05:54:58 +0000
commit1627d9a85e24ee569d137693b8687b1a6b99d8f0 (patch)
tree98defc34a4249cd9223826ce8005505d781e5d76
parentc3ead7450215f6146e22f3360afa91d778a48971 (diff)
parente2fc88c05cb1c2cf08feac473a9747aa9270caa8 (diff)
downloadv4l2_codec2-1627d9a85e24ee569d137693b8687b1a6b99d8f0.tar.gz
Mark VP8 decoder as valid. am: e2fc88c05c
Original change: https://googleplex-android-review.googlesource.com/c/platform/external/v4l2_codec2/+/14511940 Change-Id: I829e7d9b9c932568799bceb3a5fff017c1710ce6
-rw-r--r--common/V4L2ComponentCommon.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/V4L2ComponentCommon.cpp b/common/V4L2ComponentCommon.cpp
index 6cf3618..518b489 100644
--- a/common/V4L2ComponentCommon.cpp
+++ b/common/V4L2ComponentCommon.cpp
@@ -25,7 +25,7 @@ const std::string V4L2ComponentName::kVP9SecureDecoder = "c2.v4l2.vp9.decoder.se
// static
bool V4L2ComponentName::isValid(const char* name) {
return name == kH264Encoder || name == kVP8Encoder || name == kVP9Encoder ||
- name == kH264Decoder || name == kVP9Encoder || name == kVP9Decoder ||
+ name == kH264Decoder || name == kVP8Decoder || name == kVP9Decoder ||
name == kH264SecureDecoder || name == kVP8SecureDecoder || name == kVP9SecureDecoder;
}