summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xlvpp/VideoEditorPlayer.cpp3
-rwxr-xr-xlvpp/VideoEditorPlayer.h3
2 files changed, 2 insertions, 4 deletions
diff --git a/lvpp/VideoEditorPlayer.cpp b/lvpp/VideoEditorPlayer.cpp
index 37f2a51..90a5821 100755
--- a/lvpp/VideoEditorPlayer.cpp
+++ b/lvpp/VideoEditorPlayer.cpp
@@ -380,8 +380,7 @@ status_t VideoEditorPlayer::VeAudioOutput::getPosition(uint32_t *position) {
status_t VideoEditorPlayer::VeAudioOutput::open(
uint32_t sampleRate, int channelCount, int format, int bufferCount,
- AudioCallback cb, void *cookie,
- LatencyCallback latencyCb) {
+ AudioCallback cb, void *cookie) {
mCallback = cb;
mCallbackCookie = cookie;
diff --git a/lvpp/VideoEditorPlayer.h b/lvpp/VideoEditorPlayer.h
index e1908b7..6b10b36 100755
--- a/lvpp/VideoEditorPlayer.h
+++ b/lvpp/VideoEditorPlayer.h
@@ -51,8 +51,7 @@ class VideoEditorPlayer : public MediaPlayerInterface {
virtual status_t open(
uint32_t sampleRate, int channelCount,
int format, int bufferCount,
- AudioCallback cb, void *cookie,
- LatencyCallback latencyCb = NULL);
+ AudioCallback cb, void *cookie);
virtual void start();
virtual ssize_t write(const void* buffer, size_t size);