summaryrefslogtreecommitdiffstats
path: root/libstagefrighthw/SecHardwareRenderer.h
diff options
context:
space:
mode:
authorhoony.yu <hoony.yu@samsung.com>2010-09-16 06:05:52 +0900
committerSimon Wilson <simonwilson@google.com>2010-09-21 13:49:10 -0700
commitac3afb23b5a9f45e82cc3684b3f91dfc14666965 (patch)
tree53724b173d1ca5af78f7079a62922f184661cb00 /libstagefrighthw/SecHardwareRenderer.h
parent34cfd9e7e4c29b1322861d2c7fbbc343772506d6 (diff)
downloaddevice_samsung_crespo-ac3afb23b5a9f45e82cc3684b3f91dfc14666965.zip
device_samsung_crespo-ac3afb23b5a9f45e82cc3684b3f91dfc14666965.tar.gz
device_samsung_crespo-ac3afb23b5a9f45e82cc3684b3f91dfc14666965.tar.bz2
S5PC11X: OVERLAY: Added stagefright H/W renderer
- add libstagefrighthw source - register PRODUCT_PACKAGES of device.mk Change-Id: Iab81690734042c8e810becd1bb67f29c3835206c Signed-off-by: hoony.yu <hoony.yu@samsung.com>
Diffstat (limited to 'libstagefrighthw/SecHardwareRenderer.h')
-rw-r--r--libstagefrighthw/SecHardwareRenderer.h76
1 files changed, 76 insertions, 0 deletions
diff --git a/libstagefrighthw/SecHardwareRenderer.h b/libstagefrighthw/SecHardwareRenderer.h
new file mode 100644
index 0000000..a353cd6
--- /dev/null
+++ b/libstagefrighthw/SecHardwareRenderer.h
@@ -0,0 +1,76 @@
+/*
+ * Copyright (C) 2010 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+#ifndef SEC_HARDWARE_RENDERER_H_
+
+#define SEC_HARDWARE_RENDERER_H_
+
+#include <media/stagefright/VideoRenderer.h>
+#include <utils/RefBase.h>
+#include <utils/Vector.h>
+
+#include <OMX_Component.h>
+
+#include <binder/MemoryHeapBase.h>
+#include <binder/MemoryHeapPmem.h>
+
+namespace android {
+
+class ISurface;
+class Overlay;
+
+class SecHardwareRenderer : public VideoRenderer {
+public:
+ SecHardwareRenderer(
+ const sp<ISurface> &surface,
+ size_t displayWidth, size_t displayHeight,
+ size_t decodedWidth, size_t decodedHeight,
+ OMX_COLOR_FORMATTYPE colorFormat);
+
+ virtual ~SecHardwareRenderer();
+
+ status_t initCheck() const { return mInitCheck; }
+
+ virtual void render(
+ const void *data, size_t size, void *platformPrivate);
+
+
+private:
+ sp<ISurface> mISurface;
+ size_t mDisplayWidth, mDisplayHeight;
+ size_t mDecodedWidth, mDecodedHeight;
+ OMX_COLOR_FORMATTYPE mColorFormat;
+ status_t mInitCheck;
+ size_t mFrameSize;
+ sp<Overlay> mOverlay;
+ sp<MemoryHeapBase> mMemoryHeap;
+ Vector<void *> mOverlayAddresses;
+ bool mIsFirstFrame;
+ int mNumBuf;
+ size_t mIndex;
+ bool mCustomFormat;
+
+
+ SecHardwareRenderer(const SecHardwareRenderer &);
+ SecHardwareRenderer &operator=(const SecHardwareRenderer &);
+
+ void handleYUV420Planar(const void *, size_t);
+};
+
+} // namespace android
+
+#endif // SEC_HARDWARE_RENDERER_H_
+