diff options
author | Mathias Agopian <mathias@google.com> | 2012-02-26 00:40:08 -0800 |
---|---|---|
committer | Mathias Agopian <mathias@google.com> | 2012-02-26 00:40:08 -0800 |
commit | 90b6191067990a7a3ee947d7ce08c64f780f0de7 (patch) | |
tree | 24b43234802560783e9c7426784f83c15db87caa /libvideoeditor | |
parent | ff63ae394b51682f5d36f3413c8f9d7367b8412e (diff) | |
download | frameworks_av-90b6191067990a7a3ee947d7ce08c64f780f0de7.zip frameworks_av-90b6191067990a7a3ee947d7ce08c64f780f0de7.tar.gz frameworks_av-90b6191067990a7a3ee947d7ce08c64f780f0de7.tar.bz2 |
fix location of libgui headers
Change-Id: I0d203f4e7aa83e0449f7ebb9f3cafe021e38fc2f
Diffstat (limited to 'libvideoeditor')
-rwxr-xr-x | libvideoeditor/lvpp/NativeWindowRenderer.cpp | 1 | ||||
-rwxr-xr-x | libvideoeditor/lvpp/PreviewPlayer.cpp | 3 | ||||
-rwxr-xr-x | libvideoeditor/lvpp/PreviewRenderer.cpp | 2 | ||||
-rwxr-xr-x | libvideoeditor/lvpp/VideoEditorPreviewController.cpp | 2 |
4 files changed, 3 insertions, 5 deletions
diff --git a/libvideoeditor/lvpp/NativeWindowRenderer.cpp b/libvideoeditor/lvpp/NativeWindowRenderer.cpp index efc915a..cd4ff6c 100755 --- a/libvideoeditor/lvpp/NativeWindowRenderer.cpp +++ b/libvideoeditor/lvpp/NativeWindowRenderer.cpp @@ -25,7 +25,6 @@ #include <stagefright/foundation/ADebug.h> #include <stagefright/MediaBuffer.h> #include <stagefright/MetaData.h> -#include <surfaceflinger/Surface.h> #include "VideoEditorTools.h" #define CHECK_EGL_ERROR CHECK(EGL_SUCCESS == eglGetError()) diff --git a/libvideoeditor/lvpp/PreviewPlayer.cpp b/libvideoeditor/lvpp/PreviewPlayer.cpp index 80eee4b..34731d7 100755 --- a/libvideoeditor/lvpp/PreviewPlayer.cpp +++ b/libvideoeditor/lvpp/PreviewPlayer.cpp @@ -30,10 +30,9 @@ #include <media/stagefright/MetaData.h> #include <media/stagefright/OMXCodec.h> #include <media/stagefright/foundation/ADebug.h> -#include <surfaceflinger/Surface.h> +#include <gui/Surface.h> #include <gui/ISurfaceTexture.h> #include <gui/SurfaceTextureClient.h> -#include <surfaceflinger/ISurfaceComposer.h> #include "VideoEditorPreviewController.h" #include "DummyAudioSource.h" diff --git a/libvideoeditor/lvpp/PreviewRenderer.cpp b/libvideoeditor/lvpp/PreviewRenderer.cpp index 2ffd488..4aa4eb3 100755 --- a/libvideoeditor/lvpp/PreviewRenderer.cpp +++ b/libvideoeditor/lvpp/PreviewRenderer.cpp @@ -22,7 +22,7 @@ #include "PreviewRenderer.h" #include <media/stagefright/foundation/ADebug.h> -#include <surfaceflinger/Surface.h> +#include <gui/Surface.h> namespace android { diff --git a/libvideoeditor/lvpp/VideoEditorPreviewController.cpp b/libvideoeditor/lvpp/VideoEditorPreviewController.cpp index e64989c..149c4ea 100755 --- a/libvideoeditor/lvpp/VideoEditorPreviewController.cpp +++ b/libvideoeditor/lvpp/VideoEditorPreviewController.cpp @@ -18,7 +18,7 @@ #define LOG_TAG "PreviewController" #include <utils/Log.h> -#include <surfaceflinger/Surface.h> +#include <gui/Surface.h> #include "VideoEditorAudioPlayer.h" #include "PreviewRenderer.h" |