v4l2_codec2 encoder: Fix minor coding style issue in format converter.
This CL renames a function to fix a minor coding style violation in the
format converter.
Bug: 205203831
Test: arc.VideoEncodeAccel.h264_192p_i420_vm
Change-Id: I6524c09b2957deea2528dc0bef4edad080a227ce
(cherry picked from commit def29da9dbc2e896c548e0687ca8c2603c9ac555)
diff --git a/common/FormatConverter.cpp b/common/FormatConverter.cpp
index 18893d5..4a43217 100644
--- a/common/FormatConverter.cpp
+++ b/common/FormatConverter.cpp
@@ -60,7 +60,7 @@
}
// static
-std::unique_ptr<ImplDefinedToRGBXMap> ImplDefinedToRGBXMap::Create(
+std::unique_ptr<ImplDefinedToRGBXMap> ImplDefinedToRGBXMap::create(
const C2ConstGraphicBlock& block) {
uint32_t width, height, format, stride, igbpSlot, generation;
uint64_t usage, igbpId;
@@ -92,7 +92,7 @@
}
// static
-std::unique_ptr<FormatConverter> FormatConverter::Create(VideoPixelFormat outFormat,
+std::unique_ptr<FormatConverter> FormatConverter::create(VideoPixelFormat outFormat,
const ui::Size& visibleSize,
uint32_t inputCount,
const ui::Size& codedSize) {
@@ -195,7 +195,7 @@
// The above layout() cannot fill layout information and sets it to 0 instead if the input
// format is IMPLEMENTATION_DEFINED and its backed format is RGB. We fill the layout by
// using ImplDefinedToRGBXMap in this case.
- idMap = ImplDefinedToRGBXMap::Create(inputBlock);
+ idMap = ImplDefinedToRGBXMap::create(inputBlock);
if (!idMap) {
ALOGE("Unable to parse RGBX_8888 from IMPLEMENTATION_DEFINED");
return C2_CORRUPTED;