diff options
author | Glenn Kasten <gkasten@google.com> | 2012-11-14 08:44:39 -0800 |
---|---|---|
committer | Glenn Kasten <gkasten@google.com> | 2012-11-14 16:19:23 -0800 |
commit | 1127d65d536ebbe447ee17ce0926a7ce4a2a3c08 (patch) | |
tree | 5babfd3aecd195c92b12847592f415c6bad513e4 /libvideoeditor | |
parent | 1513ad2d2de0962cc3b3121e6fae73d8ee1a4639 (diff) | |
download | frameworks_av-1127d65d536ebbe447ee17ce0926a7ce4a2a3c08.zip frameworks_av-1127d65d536ebbe447ee17ce0926a7ce4a2a3c08.tar.gz frameworks_av-1127d65d536ebbe447ee17ce0926a7ce4a2a3c08.tar.bz2 |
Use uint32_t for sample rate
Change-Id: Ie240b48fb54b08359f69ecd4e5f8bda3d15cbe80
Diffstat (limited to 'libvideoeditor')
-rwxr-xr-x | libvideoeditor/lvpp/VideoEditorPlayer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libvideoeditor/lvpp/VideoEditorPlayer.cpp b/libvideoeditor/lvpp/VideoEditorPlayer.cpp index fc9fb49..d34b6d3 100755 --- a/libvideoeditor/lvpp/VideoEditorPlayer.cpp +++ b/libvideoeditor/lvpp/VideoEditorPlayer.cpp @@ -406,7 +406,7 @@ status_t VideoEditorPlayer::VeAudioOutput::open( } ALOGV("open(%u, %d, %d, %d)", sampleRate, channelCount, format, bufferCount); if (mTrack) close(); - int afSampleRate; + uint32_t afSampleRate; int afFrameCount; int frameCount; |