Searched refs:mOutBlock (Results 1 – 8 of 8) sorted by relevance
/hardware/google/av/media/codecs/mpeg4_h263/ |
D | C2SoftMpeg4Dec.cpp | 232 if (mOutBlock) { in onRelease() 233 mOutBlock.reset(); in onRelease() 295 std::shared_ptr<C2Buffer> buffer = createGraphicBuffer(std::move(mOutBlock), in finishWork() 297 mOutBlock = nullptr; in finishWork() 333 if (mOutBlock && in ensureDecoderState() 334 (mOutBlock->width() != align(mWidth, 16) || mOutBlock->height() != mHeight)) { in ensureDecoderState() 335 mOutBlock.reset(); in ensureDecoderState() 337 if (!mOutBlock) { in ensureDecoderState() 340 … c2_status_t err = pool->fetchGraphicBlock(align(mWidth, 16), mHeight, format, usage, &mOutBlock); in ensureDecoderState() 346 mOutBlock->width(), mOutBlock->height(), mWidth, mHeight); in ensureDecoderState() [all …]
|
D | C2SoftMpeg4Dec.h | 58 std::shared_ptr<C2GraphicBlock> mOutBlock; member
|
/hardware/google/av/media/codecs/hevc/ |
D | C2SoftHevcDec.cpp | 322 if (mOutBlock) { in onRelease() 323 mOutBlock.reset(); in onRelease() 676 std::shared_ptr<C2Buffer> buffer = createGraphicBuffer(std::move(mOutBlock), in finishWork() 678 mOutBlock = nullptr; in finishWork() 708 if (mOutBlock && in ensureDecoderState() 709 (mOutBlock->width() != mStride || mOutBlock->height() != mHeight)) { in ensureDecoderState() 710 mOutBlock.reset(); in ensureDecoderState() 712 if (!mOutBlock) { in ensureDecoderState() 715 c2_status_t err = pool->fetchGraphicBlock(mStride, mHeight, format, usage, &mOutBlock); in ensureDecoderState() 721 mOutBlock->width(), mOutBlock->height(), mStride, mHeight); in ensureDecoderState() [all …]
|
D | C2SoftHevcDec.h | 112 std::shared_ptr<C2GraphicBlock> mOutBlock; member
|
/hardware/google/av/media/codecs/avc/ |
D | C2SoftAvcDec.cpp | 365 if (mOutBlock) { in onRelease() 366 mOutBlock.reset(); in onRelease() 714 std::shared_ptr<C2Buffer> buffer = createGraphicBuffer(std::move(mOutBlock), in finishWork() 716 mOutBlock = nullptr; in finishWork() 746 if (mOutBlock && in ensureDecoderState() 747 (mOutBlock->width() != mStride || mOutBlock->height() != mHeight)) { in ensureDecoderState() 748 mOutBlock.reset(); in ensureDecoderState() 750 if (!mOutBlock) { in ensureDecoderState() 753 c2_status_t err = pool->fetchGraphicBlock(mStride, mHeight, format, usage, &mOutBlock); in ensureDecoderState() 759 mOutBlock->width(), mOutBlock->height(), mStride, mHeight); in ensureDecoderState() [all …]
|
D | C2SoftAvcDec.h | 161 std::shared_ptr<C2GraphicBlock> mOutBlock; variable
|
/hardware/google/av/media/codecs/mpeg2/ |
D | C2SoftMpeg2Dec.cpp | 285 if (mOutBlock) { in onRelease() 286 mOutBlock.reset(); in onRelease() 727 std::shared_ptr<C2Buffer> buffer = createGraphicBuffer(std::move(mOutBlock), in finishWork() 729 mOutBlock = nullptr; in finishWork() 759 if (mOutBlock && in ensureDecoderState() 760 (mOutBlock->width() != mStride || mOutBlock->height() != mHeight)) { in ensureDecoderState() 761 mOutBlock.reset(); in ensureDecoderState() 763 if (!mOutBlock) { in ensureDecoderState() 766 c2_status_t err = pool->fetchGraphicBlock(mStride, mHeight, format, usage, &mOutBlock); in ensureDecoderState() 772 mOutBlock->width(), mOutBlock->height(), mStride, mHeight); in ensureDecoderState() [all …]
|
D | C2SoftMpeg2Dec.h | 160 std::shared_ptr<C2GraphicBlock> mOutBlock; member
|