aboutsummaryrefslogtreecommitdiff
path: root/components/include/v4l2_codec2/components/VideoDecoder.h
diff options
context:
space:
mode:
authorAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2023-12-05 02:45:08 +0000
committerAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2023-12-05 02:45:08 +0000
commit08f7faf7670f992a8968e4fc1ec7622455619e55 (patch)
tree9b4f826be83a85aa050d8c10a50ecde3e999a2ca /components/include/v4l2_codec2/components/VideoDecoder.h
parentadce121255bdd673909e740dff522c3c0478713a (diff)
parent0378da79c37e9d7c63224e91657fc5f2bb732666 (diff)
downloadv4l2_codec2-08f7faf7670f992a8968e4fc1ec7622455619e55.tar.gz
Change-Id: I7106b44e859477d2b2eb9924fefc53aeafeaea88
Diffstat (limited to 'components/include/v4l2_codec2/components/VideoDecoder.h')
-rw-r--r--components/include/v4l2_codec2/components/VideoDecoder.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/components/include/v4l2_codec2/components/VideoDecoder.h b/components/include/v4l2_codec2/components/VideoDecoder.h
index 5b2da41..3e3fec4 100644
--- a/components/include/v4l2_codec2/components/VideoDecoder.h
+++ b/components/include/v4l2_codec2/components/VideoDecoder.h
@@ -26,11 +26,11 @@ public:
};
static const char* DecodeStatusToString(DecodeStatus status);
- using GetPoolCB = base::RepeatingCallback<std::unique_ptr<VideoFramePool>(
+ using GetPoolCB = ::base::RepeatingCallback<std::unique_ptr<VideoFramePool>(
const ui::Size& size, HalPixelFormat pixelFormat, size_t numOutputBuffers)>;
- using DecodeCB = base::OnceCallback<void(DecodeStatus)>;
- using OutputCB = base::RepeatingCallback<void(std::unique_ptr<VideoFrame>)>;
- using ErrorCB = base::RepeatingCallback<void()>;
+ using DecodeCB = ::base::OnceCallback<void(DecodeStatus)>;
+ using OutputCB = ::base::RepeatingCallback<void(std::unique_ptr<VideoFrame>)>;
+ using ErrorCB = ::base::RepeatingCallback<void()>;
virtual ~VideoDecoder();