diff options
Diffstat (limited to 'media/omx-plugin/lib')
6 files changed, 0 insertions, 376 deletions
diff --git a/media/omx-plugin/lib/ics/libstagefright/libstagefright.cpp b/media/omx-plugin/lib/ics/libstagefright/libstagefright.cpp deleted file mode 100644 index a998c4a56..000000000 --- a/media/omx-plugin/lib/ics/libstagefright/libstagefright.cpp +++ /dev/null @@ -1,193 +0,0 @@ -/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ -/* vim:set ts=2 sw=2 sts=2 et cindent: */ -/* This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this file, - * You can obtain one at http://mozilla.org/MPL/2.0/. */ -#include "mozilla/Types.h" -#define STAGEFRIGHT_EXPORT __attribute__ ((visibility ("default"))) -#include "stagefright/ColorConverter.h" -#include "stagefright/DataSource.h" -#include "media/stagefright/MediaBuffer.h" -#include "stagefright/MediaExtractor.h" -#include "media/stagefright/MediaSource.h" -#include "stagefright/MetaData.h" -#include "media/stagefright/openmax/OMX_Types.h" -#include "media/stagefright/openmax/OMX_Index.h" -#include "media/stagefright/openmax/OMX_IVCommon.h" -#include "media/stagefright/openmax/OMX_Video.h" -#include "media/stagefright/openmax/OMX_Core.h" -#include "stagefright/OMXCodec.h" -#include "stagefright/OMXClient.h" - -namespace android { -MOZ_EXPORT void -MediaBuffer::release() -{ -} - -MOZ_EXPORT size_t -MediaBuffer::range_offset() const -{ - return 0; -} - -MOZ_EXPORT size_t -MediaBuffer::range_length() const -{ - return 0; -} - -MOZ_EXPORT sp<MetaData> -MediaBuffer::meta_data() -{ - return 0; -} - -MOZ_EXPORT void* -MediaBuffer::data() const -{ - return 0; -} - -MOZ_EXPORT size_t -MediaBuffer::size() const -{ - return 0; -} - -MOZ_EXPORT bool -MetaData::findInt32(uint32_t key, int32_t *value) -{ - return false; -} - -MOZ_EXPORT bool -MetaData::setInt32(uint32_t, int32_t) -{ - return false; -} - -MOZ_EXPORT bool -MetaData::findInt64(uint32_t key, int64_t *value) -{ - return false; -} - -MOZ_EXPORT bool -MetaData::findPointer(uint32_t key, void **value) -{ - return false; -} - -MOZ_EXPORT bool -MetaData::findCString(uint32_t key, const char **value) -{ - return false; -} - -MOZ_EXPORT bool -MetaData::findRect(unsigned int key, int *cropLeft, int *cropTop, - int *cropRight, int *cropBottom) -{ - abort(); -} - -MOZ_EXPORT MediaSource::ReadOptions::ReadOptions() -{ -} - -MOZ_EXPORT void -MediaSource::ReadOptions::setSeekTo(int64_t time_us, SeekMode mode) -{ -} - -MOZ_EXPORT sp<DataSource> DataSource::CreateFromURI( - const char *uri, - const KeyedVector<String8, String8> *headers) { - return 0; -} - -MOZ_EXPORT bool -DataSource::getUInt16(off64_t offset, uint16_t *x) -{ - return false; -} - -MOZ_EXPORT status_t -DataSource::getSize(off64_t *size) -{ - return 0; -} - -MOZ_EXPORT String8 -DataSource::getMIMEType() const -{ - return String8(); -} - -MOZ_EXPORT void -DataSource::RegisterDefaultSniffers() -{ -} - -MOZ_EXPORT sp<MediaExtractor> -MediaExtractor::Create(const sp<DataSource> &source, const char *mime) -{ - return 0; -} - -MOZ_EXPORT sp<MediaSource> -OMXCodec::Create( - const sp<IOMX> &omx, - const sp<MetaData> &meta, bool createEncoder, - const sp<MediaSource> &source, - const char *matchComponentName, - uint32_t flags, - const sp<ANativeWindow> &nativeWindow) -{ - return 0; -} - -MOZ_EXPORT OMXClient::OMXClient() -{ -} - -MOZ_EXPORT status_t OMXClient::connect() -{ - return OK; -} - -MOZ_EXPORT void OMXClient::disconnect() -{ -} - -MOZ_EXPORT -ColorConverter::ColorConverter(OMX_COLOR_FORMATTYPE, OMX_COLOR_FORMATTYPE) { } - -MOZ_EXPORT -ColorConverter::~ColorConverter() { } - -MOZ_EXPORT bool -ColorConverter::isValid() const { return false; } - -MOZ_EXPORT status_t -ColorConverter::convert(const void *srcBits, - size_t srcWidth, size_t srcHeight, - size_t srcCropLeft, size_t srcCropTop, - size_t srcCropRight, size_t srcCropBottom, - void *dstBits, - size_t dstWidth, size_t dstHeight, - size_t dstCropLeft, size_t dstCropTop, - size_t dstCropRight, size_t dstCropBottom) -{ - return 0; -} - -MOZ_EXPORT status_t QueryCodecs(const sp<IOMX> &omx, - const char *mimeType, bool queryDecoders, - Vector<CodecCapabilities> *results) -{ - return 0; -} - -} diff --git a/media/omx-plugin/lib/ics/libstagefright/moz.build b/media/omx-plugin/lib/ics/libstagefright/moz.build deleted file mode 100644 index b156d151e..000000000 --- a/media/omx-plugin/lib/ics/libstagefright/moz.build +++ /dev/null @@ -1,32 +0,0 @@ -# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*- -# vim: set filetype=python: -# This Source Code Form is subject to the terms of the Mozilla Public -# License, v. 2.0. If a copy of the MPL was not distributed with this -# file, You can obtain one at http://mozilla.org/MPL/2.0/. -DIST_INSTALL = False - -SOURCES += [ - 'libstagefright.cpp', -] -# Some codec-related code uses multi-character constants; allow this. -# XXX: could instead use the FOURCC macro to define these constants. -if CONFIG['GNU_CC'] or CONFIG['CLANG_CL']: - SOURCES['libstagefright.cpp'].flags += ['-Wno-error=multichar'] - -SharedLibrary('stagefright') - -LOCAL_INCLUDES += [ - '/media/omx-plugin/include/ics', - '/media/omx-plugin/include/ics/media/stagefright/openmax', -] - -USE_LIBS += [ - '/media/omx-plugin/lib/ics/libutils/utils', -] - -# Don't use STL wrappers; this isn't Gecko code -DISABLE_STL_WRAPPING = True -NO_VISIBILITY_FLAGS = True - -if CONFIG['GNU_CXX']: - CXXFLAGS += ['-Wno-shadow'] diff --git a/media/omx-plugin/lib/ics/libutils/libutils.cpp b/media/omx-plugin/lib/ics/libutils/libutils.cpp deleted file mode 100644 index 67f5a540a..000000000 --- a/media/omx-plugin/lib/ics/libutils/libutils.cpp +++ /dev/null @@ -1,84 +0,0 @@ -/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ -/* vim:set ts=2 sw=2 sts=2 et cindent: */ -/* This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this file, - * You can obtain one at http://mozilla.org/MPL/2.0/. */ -#include "mozilla/Types.h" -#include "utils/RefBase.h" -#include "utils/String16.h" -#include "utils/String8.h" -#include "utils/Vector.h" - -namespace android { -MOZ_EXPORT RefBase::RefBase() : mRefs(0) -{ -} - -MOZ_EXPORT RefBase::~RefBase() -{ -} - -MOZ_EXPORT void RefBase::incStrong(const void *id) const -{ -} - -MOZ_EXPORT void RefBase::decStrong(const void *id) const -{ -} - -MOZ_EXPORT void RefBase::onFirstRef() -{ -} - -MOZ_EXPORT void RefBase::onLastStrongRef(const void* id) -{ -} - -MOZ_EXPORT bool RefBase::onIncStrongAttempted(uint32_t flags, const void* id) -{ - return false; -} - -MOZ_EXPORT void RefBase::onLastWeakRef(void const* id) -{ -} - -MOZ_EXPORT String16::String16(char const*) -{ -} - -MOZ_EXPORT String16::~String16() -{ -} - -MOZ_EXPORT String8::String8() -{ -} - -MOZ_EXPORT String8::String8(const String8 &) -{ -} - -MOZ_EXPORT String8::~String8() -{ -} - -MOZ_EXPORT VectorImpl::VectorImpl(size_t, uint32_t) - : mFlags(0), mItemSize(0) -{ -} - -MOZ_EXPORT VectorImpl::VectorImpl(const VectorImpl &) - : mFlags(0), mItemSize(0) -{ -} - -MOZ_EXPORT VectorImpl::~VectorImpl() -{ -} - -MOZ_EXPORT void VectorImpl::finish_vector() -{ -} - -} diff --git a/media/omx-plugin/lib/ics/libutils/moz.build b/media/omx-plugin/lib/ics/libutils/moz.build deleted file mode 100644 index 7fa617fb3..000000000 --- a/media/omx-plugin/lib/ics/libutils/moz.build +++ /dev/null @@ -1,24 +0,0 @@ -# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*- -# vim: set filetype=python: -# This Source Code Form is subject to the terms of the Mozilla Public -# License, v. 2.0. If a copy of the MPL was not distributed with this -# file, You can obtain one at http://mozilla.org/MPL/2.0/. -DIST_INSTALL = False - -SOURCES += [ - 'libutils.cpp', -] - -SharedLibrary('utils') - -LOCAL_INCLUDES += [ - '/media/omx-plugin/include/ics', - '/media/omx-plugin/include/ics/media/stagefright/openmax', -] - -# Don't use STL wrappers; this isn't Gecko code -DISABLE_STL_WRAPPING = True -NO_VISIBILITY_FLAGS = True - -if CONFIG['GNU_CXX']: - CXXFLAGS += ['-Wno-shadow'] diff --git a/media/omx-plugin/lib/ics/libvideoeditorplayer/libvideoeditorplayer.cpp b/media/omx-plugin/lib/ics/libvideoeditorplayer/libvideoeditorplayer.cpp deleted file mode 100644 index 2c491aeb9..000000000 --- a/media/omx-plugin/lib/ics/libvideoeditorplayer/libvideoeditorplayer.cpp +++ /dev/null @@ -1,23 +0,0 @@ -/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ -/* vim:set ts=2 sw=2 sts=2 et cindent: */ -/* This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this file, - * You can obtain one at http://mozilla.org/MPL/2.0/. */ -#include "mozilla/Types.h" -#include "I420ColorConverter.h" - -MOZ_EXPORT -I420ColorConverter::I420ColorConverter() -{ -} - -MOZ_EXPORT -I420ColorConverter::~I420ColorConverter() -{ -} - -MOZ_EXPORT bool -I420ColorConverter::isLoaded() -{ - return false; -} diff --git a/media/omx-plugin/lib/ics/libvideoeditorplayer/moz.build b/media/omx-plugin/lib/ics/libvideoeditorplayer/moz.build deleted file mode 100644 index f05f0f3c9..000000000 --- a/media/omx-plugin/lib/ics/libvideoeditorplayer/moz.build +++ /dev/null @@ -1,20 +0,0 @@ -# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*- -# vim: set filetype=python: -# This Source Code Form is subject to the terms of the Mozilla Public -# License, v. 2.0. If a copy of the MPL was not distributed with this -# file, You can obtain one at http://mozilla.org/MPL/2.0/. -DIST_INSTALL = False - -SOURCES += [ - 'libvideoeditorplayer.cpp', -] - -SharedLibrary('videoeditorplayer') - -# Don't use STL wrappers; this isn't Gecko code -DISABLE_STL_WRAPPING = True -NO_VISIBILITY_FLAGS = True - -LOCAL_INCLUDES += [ - '/media/omx-plugin/include/ics', -] |