summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrik Ryd <patrik.ryd@linaro.org>2012-05-16 16:39:58 +0200
committerPatrik Ryd <patrik.ryd@linaro.org>2012-05-16 16:39:58 +0200
commit6d088d46a47346372d11901fc6a8566d5a638aa4 (patch)
treec6cf5834094e169801550b6541dcc994998cc5ae
parent13ee6fc1f38158cbbafb4c947c0711fe97c4ba33 (diff)
downloadlibvideoeditor-linaro_android_4.0.4_snowball.tar.gz
Revert "Adds dummy arguement in open function."linaro_android_4.0.4_snowball
This reverts commit ace097aac6c4075e0bdda188679d5a5c3c363167.
-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);