OSDN Git Service

Fix issue 2285561: New AudioFlinger and audio driver API needed for A/V sync
authorEric Laurent <elaurent@google.com>
Wed, 20 Jan 2010 01:34:55 +0000 (17:34 -0800)
committerEric Laurent <elaurent@google.com>
Tue, 26 Jan 2010 18:36:42 +0000 (10:36 -0800)
    Added getRenderPosition() API to AudioHardwareInterface to retreive number of audio frames
    written by DSP to DAC.

include/hardware_legacy/AudioHardwareInterface.h

index 46cea77..bc9b4b2 100644 (file)
@@ -98,6 +98,10 @@ public:
     // The audio flinger will put the output in standby and then change the parameter value.
     virtual status_t    setParameters(const String8& keyValuePairs) = 0;
     virtual String8     getParameters(const String8& keys) = 0;
+
+    // return the number of audio frames written by the audio dsp to DAC since
+    // the output has exited standby
+    virtual status_t    getRenderPosition(uint32_t *dspFrames) = 0;
 };
 
 /**