Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4a108948 authored by Glenn Kasten's avatar Glenn Kasten Committed by Android (Google) Code Review
Browse files

Merge "Use audio_stream_type_t consistently"

parents daeb5b33 813c1017
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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;