aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Staessens <dstaessens@google.com>2021-03-10 12:52:44 +0900
committerChih-Yu Huang <akahuang@google.com>2021-05-12 11:36:25 +0900
commit31e95f5d8a4c7132caeff814e5591003e49b05df (patch)
tree372cddb5a9333519974d152f17045009533a839f
parent285da16b7071d8e83c6132200fd58b0e5cafa1aa (diff)
downloadv4l2_codec2-31e95f5d8a4c7132caeff814e5591003e49b05df.tar.gz
v4l2_codec2: Remove unused function declaration from V4L2Decoder.
This CL performs some minor cleanup removing an unused function declaration from the V4L2Decoder.h file. Bug: 152714603 Test: m -j32 Change-Id: I9edc4ffc46c56659f17f3a65f4a3e1a203d6eee2
-rw-r--r--components/include/v4l2_codec2/components/V4L2Decoder.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/components/include/v4l2_codec2/components/V4L2Decoder.h b/components/include/v4l2_codec2/components/V4L2Decoder.h
index bdddc7f..ac83458 100644
--- a/components/include/v4l2_codec2/components/V4L2Decoder.h
+++ b/components/include/v4l2_codec2/components/V4L2Decoder.h
@@ -49,7 +49,6 @@ private:
: buffer(std::move(buffer)), decodeCb(std::move(decodeCb)) {}
DecodeRequest(DecodeRequest&&) = default;
~DecodeRequest() = default;
- DecodeRequest& operator=(DecodeRequest&&);
std::unique_ptr<BitstreamBuffer> buffer; // nullptr means Drain
DecodeCB decodeCb;