ESQueue.h revision ff9863b206cd5d1e856dbfdf66bc85581aee7608
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
26namespace android {
27
28struct ABuffer;
29class MetaData;
30
31struct 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 signalEOS();
50    void clear(bool clearFormat);
51
52    sp<ABuffer> dequeueAccessUnit();
53
54    sp<MetaData> getFormat();
55
56private:
57    struct RangeInfo {
58        int64_t mTimestampUs;
59        size_t mLength;
60    };
61
62    Mode mMode;
63    uint32_t mFlags;
64    bool mEOSReached;
65
66    sp<ABuffer> mBuffer;
67    List<RangeInfo> mRangeInfos;
68
69    sp<MetaData> mFormat;
70
71    sp<ABuffer> dequeueAccessUnitH264();
72    sp<ABuffer> dequeueAccessUnitAAC();
73    sp<ABuffer> dequeueAccessUnitAC3();
74    sp<ABuffer> dequeueAccessUnitMPEGAudio();
75    sp<ABuffer> dequeueAccessUnitMPEGVideo();
76    sp<ABuffer> dequeueAccessUnitMPEG4Video();
77    sp<ABuffer> dequeueAccessUnitPCMAudio();
78
79    // consume a logical (compressed) access unit of size "size",
80    // returns its timestamp in us (or -1 if no time information).
81    int64_t fetchTimestamp(size_t size);
82
83    DISALLOW_EVIL_CONSTRUCTORS(ElementaryStreamQueue);
84};
85
86}  // namespace android
87
88#endif  // ES_QUEUE_H_
89