aboutsummaryrefslogtreecommitdiff
path: root/components/include/v4l2_codec2/components/VideoEncoder.h
diff options
context:
space:
mode:
authorXin Li <delphij@google.com>2024-01-23 20:31:15 -0800
committerXin Li <delphij@google.com>2024-01-23 20:31:15 -0800
commit3bde35bb879e4b628408ec6e126e7f124121f351 (patch)
treefe8ef1440268541e5f5b3b0bd0d4f3fc191dccdd /components/include/v4l2_codec2/components/VideoEncoder.h
parent77152681e128e84bd32edc57230d6670faa12c76 (diff)
parent0378da79c37e9d7c63224e91657fc5f2bb732666 (diff)
downloadv4l2_codec2-3bde35bb879e4b628408ec6e126e7f124121f351.tar.gz
Merge Android 24Q1 Release (ab/11220357)temp_319669529
Bug: 319669529 Merged-In: I25a226b8eb962138489f30cd0fa1a42c3e599bdf Change-Id: Id57ac546595fde736a32d17f61039b44107f413e
Diffstat (limited to 'components/include/v4l2_codec2/components/VideoEncoder.h')
-rw-r--r--components/include/v4l2_codec2/components/VideoEncoder.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/components/include/v4l2_codec2/components/VideoEncoder.h b/components/include/v4l2_codec2/components/VideoEncoder.h
index 5f23541..7e5a3c2 100644
--- a/components/include/v4l2_codec2/components/VideoEncoder.h
+++ b/components/include/v4l2_codec2/components/VideoEncoder.h
@@ -47,13 +47,13 @@ public:
};
using FetchOutputBufferCB =
- base::RepeatingCallback<void(uint32_t, std::unique_ptr<BitstreamBuffer>* buffer)>;
+ ::base::RepeatingCallback<void(uint32_t, std::unique_ptr<BitstreamBuffer>* buffer)>;
// TODO(dstaessens): Change callbacks to OnceCallback provided when requesting encode/drain.
- using InputBufferDoneCB = base::RepeatingCallback<void(uint64_t)>;
- using OutputBufferDoneCB = base::RepeatingCallback<void(
+ using InputBufferDoneCB = ::base::RepeatingCallback<void(uint64_t)>;
+ using OutputBufferDoneCB = ::base::RepeatingCallback<void(
size_t, int64_t, bool, std::unique_ptr<BitstreamBuffer> buffer)>;
- using DrainDoneCB = base::RepeatingCallback<void(bool)>;
- using ErrorCB = base::RepeatingCallback<void()>;
+ using DrainDoneCB = ::base::RepeatingCallback<void(bool)>;
+ using ErrorCB = ::base::RepeatingCallback<void()>;
virtual ~VideoEncoder() = default;