summaryrefslogtreecommitdiffstats
path: root/libvideoeditor/lvpp
diff options
context:
space:
mode:
authorGlenn Kasten <gkasten@google.com>2012-01-09 11:16:58 -0800
committerGlenn Kasten <gkasten@google.com>2012-01-12 16:52:52 -0800
commit813c1017a499d5fe7a9ee7f40aae845954a3ba55 (patch)
tree6ed3607c23f07ef215e2902b3cb2850855b11b5c /libvideoeditor/lvpp
parent8dcbd11c186e26b67de813adaec66dd578415cd7 (diff)
downloadframeworks_av-813c1017a499d5fe7a9ee7f40aae845954a3ba55.zip
frameworks_av-813c1017a499d5fe7a9ee7f40aae845954a3ba55.tar.gz
frameworks_av-813c1017a499d5fe7a9ee7f40aae845954a3ba55.tar.bz2
Use audio_stream_type_t consistently
Change-Id: I0b3ba8ab74f03433d1e64cb898fa62c02535a2f1
Diffstat (limited to 'libvideoeditor/lvpp')
-rwxr-xr-xlibvideoeditor/lvpp/VideoEditorPlayer.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libvideoeditor/lvpp/VideoEditorPlayer.h b/libvideoeditor/lvpp/VideoEditorPlayer.h
index 684a2e6..88a2aeb 100755
--- a/libvideoeditor/lvpp/VideoEditorPlayer.h
+++ b/libvideoeditor/lvpp/VideoEditorPlayer.h
@@ -59,7 +59,7 @@ class VideoEditorPlayer : public MediaPlayerInterface {
virtual void flush();
virtual void pause();
virtual void close();
- void setAudioStreamType(int streamType) { mStreamType = streamType; }
+ void setAudioStreamType(audio_stream_type_t streamType) { mStreamType = streamType; }
void setVolume(float left, float right);
virtual status_t dump(int fd,const Vector<String16>& args) const;
@@ -73,7 +73,7 @@ class VideoEditorPlayer : public MediaPlayerInterface {
AudioTrack* mTrack;
AudioCallback mCallback;
void * mCallbackCookie;
- int mStreamType;
+ audio_stream_type_t mStreamType;
float mLeftVolume;
float mRightVolume;
float mMsecsPerFrame;