summaryrefslogtreecommitdiffstats
path: root/libstagefrighthw/SecHardwareRenderer.cpp
blob: cb9e8e8da95e2a02c8ab317a42ec6d1fa0990c39 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
/*
 * 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.
 */

#define LOG_TAG "SecHardwareRenderer"
#define LOG_NDEBUG 0
#include <utils/Log.h>

#include "SecHardwareRenderer.h"

#include <media/stagefright/MediaDebug.h>
#include <surfaceflinger/ISurface.h>
#include <ui/Overlay.h>

#include <hardware/hardware.h>

#include "v4l2_utils.h"
#include "utils/Timers.h"

#define CACHEABLE_BUFFERS 0x1

#define USE_ZERO_COPY
//#define SEC_DEBUG

namespace android {

////////////////////////////////////////////////////////////////////////////////

SecHardwareRenderer::SecHardwareRenderer(
        const sp<ISurface> &surface,
        size_t displayWidth, size_t displayHeight,
        size_t decodedWidth, size_t decodedHeight,
        OMX_COLOR_FORMATTYPE colorFormat,
        int32_t rotationDegrees,
        bool fromHardwareDecoder)
    : mISurface(surface),
      mDisplayWidth(displayWidth),
      mDisplayHeight(displayHeight),
      mDecodedWidth(decodedWidth),
      mDecodedHeight(decodedHeight),
      mColorFormat(colorFormat),
      mInitCheck(NO_INIT),
      mFrameSize(mDecodedWidth * mDecodedHeight * 2),
      mIsFirstFrame(true),
      mCustomFormat(false),
      mIndex(0) {

    CHECK(mISurface.get() != NULL);
    CHECK(mDecodedWidth > 0);
    CHECK(mDecodedHeight > 0);

    if (colorFormat != OMX_COLOR_FormatCbYCrY
            && colorFormat != OMX_COLOR_FormatYUV420Planar
            && colorFormat != OMX_COLOR_FormatYUV420SemiPlanar) {
        LOGE("Invalid colorFormat (0x%x)", colorFormat);
        return;
    }

    uint32_t orientation;
    switch (rotationDegrees) {
        case 0: orientation = ISurface::BufferHeap::ROT_0; break;
        case 90: orientation = ISurface::BufferHeap::ROT_90; break;
        case 180: orientation = ISurface::BufferHeap::ROT_180; break;
        case 270: orientation = ISurface::BufferHeap::ROT_270; break;
        default: orientation = ISurface::BufferHeap::ROT_0; break;
    }

    sp<OverlayRef> ref;

#if defined (USE_ZERO_COPY)
    if (fromHardwareDecoder) {
        ref = mISurface->createOverlay(
                mDecodedWidth, mDecodedHeight,
                HAL_PIXEL_FORMAT_CUSTOM_YCbCr_420_SP, orientation);
        mCustomFormat = true;
    }
#else
    else
    {
        ref = mISurface->createOverlay(
                mDecodedWidth, mDecodedHeight, HAL_PIXEL_FORMAT_YCbCr_420_P,
                orientation);
    }
#endif

    if (ref.get() == NULL) {
        LOGE("Unable to create the overlay!");
        return;
    }

    mOverlay = new Overlay(ref);
    mOverlay->setParameter(CACHEABLE_BUFFERS, 0);

    mNumBuf = mOverlay->getBufferCount();

    if (mCustomFormat) {
        mFrameSize = 32;
        mMemoryHeap = new MemoryHeapBase(mNumBuf * mFrameSize);
    } else {
        for (size_t i = 0; i < (size_t)mNumBuf; ++i) {
            void *addr = mOverlay->getBufferAddress((void *)i);
            mOverlayAddresses.push(addr);
        }
    }

    mInitCheck = OK;
}

SecHardwareRenderer::~SecHardwareRenderer() {

    if(mMemoryHeap != NULL)
        mMemoryHeap.clear();

    if (mOverlay.get() != NULL) {
        mOverlay->destroy();
        mOverlay.clear();
    }
}

void SecHardwareRenderer::handleYUV420Planar(
        const void *data, size_t size) {

    int FrameSize;
    uint8_t* pPhyYAddr;
    uint8_t* pPhyCAddr;
    int AddrSize;
    size_t offset;

    CHECK(size >= (mDecodedWidth * mDecodedHeight * 3) / 2);

    offset = mIndex * mFrameSize;
    void *dst = (uint8_t *)mMemoryHeap->getBase() + offset;

    AddrSize = sizeof(void *);
    memcpy(&FrameSize, data, sizeof(FrameSize));
    memcpy(&pPhyYAddr, data + sizeof(FrameSize), sizeof(pPhyYAddr));
    memcpy(&pPhyCAddr, data + sizeof(FrameSize) + (AddrSize * 1), sizeof(pPhyCAddr));

    memcpy(dst , &pPhyYAddr, sizeof(pPhyYAddr));
    memcpy(dst  + sizeof(pPhyYAddr) , &pPhyCAddr, sizeof(pPhyCAddr));
    memcpy(dst  + sizeof(pPhyYAddr) + sizeof(pPhyCAddr), &mIndex, sizeof(mIndex));
}

void SecHardwareRenderer::render(
        const void *data, size_t size, void *platformPrivate) {

    if (mOverlay.get() == NULL) {
        return;
    }

    if (mCustomFormat) {
        /* zero copy solution case */

        overlay_buffer_t dst = (uint8_t *)mMemoryHeap->getBase() + mIndex*mFrameSize;

        if (mColorFormat == OMX_COLOR_FormatYUV420Planar ||
            mColorFormat == OMX_COLOR_FormatYUV420SemiPlanar) {
            handleYUV420Planar(data, size);
        }

        if (mOverlay->queueBuffer(dst) == ALL_BUFFERS_FLUSHED) {
           mIsFirstFrame = true;
           if (mOverlay->queueBuffer((void *)dst) != 0) {
                return;
           }
        }

        if (++mIndex == mNumBuf) {
            mIndex = 0;
        }

        overlay_buffer_t overlay_buffer;
        if (!mIsFirstFrame) {
            status_t err = mOverlay->dequeueBuffer(&overlay_buffer);
            if (err == ALL_BUFFERS_FLUSHED) {
                mIsFirstFrame = true;
            } else {
                return;
            }
        } else {
            mIsFirstFrame = false;
        }
    } else {
        /* normal frame case */
        if (mColorFormat == OMX_COLOR_FormatYUV420Planar) {
            memcpy(mOverlayAddresses[mIndex], data, size);
        }

        if (mOverlay->queueBuffer((void *)mIndex) == ALL_BUFFERS_FLUSHED) {
            mIsFirstFrame = true;
            if (mOverlay->queueBuffer((void *)mIndex) != 0) {
                return;
            }
        }

        if (++mIndex == mNumBuf) {
            mIndex = 0;
        }

        overlay_buffer_t overlay_buffer;
        if (!mIsFirstFrame) {
            status_t err = mOverlay->dequeueBuffer(&overlay_buffer);

            if (err == ALL_BUFFERS_FLUSHED) {
                mIsFirstFrame = true;
            } else {
                return;
            }
        } else {
            mIsFirstFrame = false;
        }
    }
}

}  // namespace android