diff options
author | Kenny Root <kroot@google.com> | 2011-02-08 11:13:19 -0800 |
---|---|---|
committer | Kenny Root <kroot@google.com> | 2011-02-08 12:38:48 -0800 |
commit | eb5b265274bb26732ac9f4ac2d42d0b7e4148d52 (patch) | |
tree | 2d97018cffb01794dfa89d6ceb32fa2e48c87265 /libvideoeditor/lvpp/VideoEditorSRC.h | |
parent | 9f57f820affa668c3c710920049c18ce406e2a12 (diff) | |
download | frameworks_av-eb5b265274bb26732ac9f4ac2d42d0b7e4148d52.zip frameworks_av-eb5b265274bb26732ac9f4ac2d42d0b7e4148d52.tar.gz frameworks_av-eb5b265274bb26732ac9f4ac2d42d0b7e4148d52.tar.bz2 |
X86 target fixes
GCC 4.2.1 complains about using void* in arithmetic. Cast it to unsigned
int before using it.
Also there was a missing stdint.h include.
Change-Id: If78bb6a771b72eb08bd2dc401371e8da14fd9ecc
Diffstat (limited to 'libvideoeditor/lvpp/VideoEditorSRC.h')
-rwxr-xr-x | libvideoeditor/lvpp/VideoEditorSRC.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libvideoeditor/lvpp/VideoEditorSRC.h b/libvideoeditor/lvpp/VideoEditorSRC.h index 3c557a4..eeb1dcc 100755 --- a/libvideoeditor/lvpp/VideoEditorSRC.h +++ b/libvideoeditor/lvpp/VideoEditorSRC.h @@ -15,6 +15,8 @@ * limitations under the License.
*/
+#include <stdint.h>
+
#include <utils/RefBase.h>
#include <media/stagefright/MediaErrors.h>
|