Home | History | Annotate | Download | only in mpeg2ts
      1 /*
      2  * Copyright (C) 2010 The Android Open Source Project
      3  *
      4  * Licensed under the Apache License, Version 2.0 (the "License");
      5  * you may not use this file except in compliance with the License.
      6  * You may obtain a copy of the License at
      7  *
      8  *      http://www.apache.org/licenses/LICENSE-2.0
      9  *
     10  * Unless required by applicable law or agreed to in writing, software
     11  * distributed under the License is distributed on an "AS IS" BASIS,
     12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     13  * See the License for the specific language governing permissions and
     14  * limitations under the License.
     15  */
     16 
     17 #ifndef ES_QUEUE_H_
     18 
     19 #define ES_QUEUE_H_
     20 
     21 #include <media/stagefright/foundation/ABase.h>
     22 #include <utils/Errors.h>
     23 #include <utils/List.h>
     24 #include <utils/RefBase.h>
     25 
     26 namespace android {
     27 
     28 struct ABuffer;
     29 struct MetaData;
     30 
     31 struct ElementaryStreamQueue {
     32     enum Mode {
     33         H264,
     34         AAC,
     35         AC3,
     36         MPEG_AUDIO,
     37         MPEG_VIDEO,
     38         MPEG4_VIDEO,
     39         PCM_AUDIO,
     40     };
     41 
     42     enum Flags {
     43         // Data appended to the queue is always at access unit boundaries.
     44         kFlag_AlignedData = 1,
     45     };
     46     ElementaryStreamQueue(Mode mode, uint32_t flags = 0);
     47 
     48     status_t appendData(const void *data, size_t size, int64_t timeUs);
     49     void clear(bool clearFormat);
     50 
     51     sp<ABuffer> dequeueAccessUnit();
     52 
     53     sp<MetaData> getFormat();
     54 
     55 private:
     56     struct RangeInfo {
     57         int64_t mTimestampUs;
     58         size_t mLength;
     59     };
     60 
     61     Mode mMode;
     62     uint32_t mFlags;
     63 
     64     sp<ABuffer> mBuffer;
     65     List<RangeInfo> mRangeInfos;
     66 
     67     sp<MetaData> mFormat;
     68 
     69     sp<ABuffer> dequeueAccessUnitH264();
     70     sp<ABuffer> dequeueAccessUnitAAC();
     71     sp<ABuffer> dequeueAccessUnitAC3();
     72     sp<ABuffer> dequeueAccessUnitMPEGAudio();
     73     sp<ABuffer> dequeueAccessUnitMPEGVideo();
     74     sp<ABuffer> dequeueAccessUnitMPEG4Video();
     75     sp<ABuffer> dequeueAccessUnitPCMAudio();
     76 
     77     // consume a logical (compressed) access unit of size "size",
     78     // returns its timestamp in us (or -1 if no time information).
     79     int64_t fetchTimestamp(size_t size);
     80     int64_t fetchTimestampAAC(size_t size);
     81 
     82     DISALLOW_EVIL_CONSTRUCTORS(ElementaryStreamQueue);
     83 };
     84 
     85 }  // namespace android
     86 
     87 #endif  // ES_QUEUE_H_
     88