From 1726a291a0f27e2df7fd7fdb9be8cdcd5ea9bdb3 Mon Sep 17 00:00:00 2001 From: Ethan Chen Date: Thu, 26 Mar 2015 22:16:46 -0700 Subject: audio: Make getPresentationPosition pure virtual * Allows compilation of libaudiohw_legacy static library Change-Id: I84c9ccb6cb3a6c744f83380cfe8c33ad5142eacf --- include/hardware_legacy/AudioHardwareInterface.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/hardware_legacy/AudioHardwareInterface.h b/include/hardware_legacy/AudioHardwareInterface.h index 6328063..b08fece 100644 --- a/include/hardware_legacy/AudioHardwareInterface.h +++ b/include/hardware_legacy/AudioHardwareInterface.h @@ -120,7 +120,7 @@ public: /** * Return a recent count of the number of audio frames presented to an external observer. */ - virtual status_t getPresentationPosition(uint64_t *frames, struct timespec *timestamp); + virtual status_t getPresentationPosition(uint64_t *frames, struct timespec *timestamp) = 0; }; -- cgit v1.1