diff options
| author | Andreas Huber <andih@google.com> | 2009-09-11 07:47:55 -0700 |
|---|---|---|
| committer | Andreas Huber <andih@google.com> | 2009-09-11 07:49:50 -0700 |
| commit | 6026a514248f0c603d0e8c4a3f542abab3fa1509 (patch) | |
| tree | 8ca481e734537e9bfcdee28c8199100ce71d18dc /include/media | |
| parent | d304ae583d862250a21b5949fc3dbdf3af1febac (diff) | |
| download | frameworks_base-6026a514248f0c603d0e8c4a3f542abab3fa1509.zip frameworks_base-6026a514248f0c603d0e8c4a3f542abab3fa1509.tar.gz frameworks_base-6026a514248f0c603d0e8c4a3f542abab3fa1509.tar.bz2 | |
Move JPEGSource.{cpp,h} into libstagefright.
Diffstat (limited to 'include/media')
| -rw-r--r-- | include/media/stagefright/JPEGSource.h | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/include/media/stagefright/JPEGSource.h b/include/media/stagefright/JPEGSource.h new file mode 100644 index 0000000..9d0a700 --- /dev/null +++ b/include/media/stagefright/JPEGSource.h @@ -0,0 +1,58 @@ +/* + * Copyright (C) 2009 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 JPEG_SOURCE_H_ + +#define JPEG_SOURCE_H_ + +#include <media/stagefright/MediaSource.h> + +namespace android { + +class DataSource; +class MediaBufferGroup; + +struct JPEGSource : public MediaSource { + JPEGSource(const sp<DataSource> &source); + + virtual status_t start(MetaData *params = NULL); + virtual status_t stop(); + virtual sp<MetaData> getFormat(); + + virtual status_t read( + MediaBuffer **buffer, const ReadOptions *options = NULL); + +protected: + virtual ~JPEGSource(); + +private: + sp<DataSource> mSource; + MediaBufferGroup *mGroup; + bool mStarted; + off_t mSize; + int32_t mWidth, mHeight; + off_t mOffset; + + status_t parseJPEG(); + + JPEGSource(const JPEGSource &); + JPEGSource &operator=(const JPEGSource &); +}; + +} // namespace android + +#endif // JPEG_SOURCE_H_ + |
