Home
last modified time | relevance | path

Searched refs:C2GraphicView (Results 1 – 25 of 30) sorted by relevance

12

/frameworks/av/media/codec2/sfplugin/utils/
DCodec2BufferUtils.h43 const C2GraphicView &src, C2Color::matrix_t colorMatrix = C2Color::MATRIX_BT601,
77 status_t ImageCopy(uint8_t *imgBase, const MediaImage2 *img, const C2GraphicView &view);
88 status_t ImageCopy(C2GraphicView &view, const uint8_t *imgBase, const MediaImage2 *img);
93 bool IsYUV420(const C2GraphicView &view);
98 bool IsYUV420_10bit(const C2GraphicView &view);
103 bool IsNV12(const C2GraphicView &view);
108 bool IsP010(const C2GraphicView &view);
113 bool IsNV21(const C2GraphicView &view);
118 bool IsI420(const C2GraphicView &view);
DCodec2BufferUtils.cpp123 status_t ImageCopy(uint8_t *imgBase, const MediaImage2 *img, const C2GraphicView &view) { in ImageCopy()
208 status_t ImageCopy(C2GraphicView &view, const uint8_t *imgBase, const MediaImage2 *img) { in ImageCopy()
292 bool IsYUV420(const C2GraphicView &view) { in IsYUV420()
316 bool IsYUV420_10bit(const C2GraphicView &view) { in IsYUV420_10bit()
338 bool IsNV12(const C2GraphicView &view) { in IsNV12()
352 bool IsP010(const C2GraphicView &view) { in IsP010()
370 bool IsNV21(const C2GraphicView &view) { in IsNV21()
384 bool IsI420(const C2GraphicView &view) { in IsI420()
594 const C2GraphicView &src, C2Color::matrix_t colorMatrix, C2Color::range_t colorRange) { in ConvertRGBToPlanarYUV()
/frameworks/av/media/codec2/sfplugin/
DCodec2Buffer.h56 status_t ImageCopy(uint8_t *imgBase, const MediaImage2 *img, const C2GraphicView &view);
67 status_t ImageCopy(C2GraphicView &view, const uint8_t *imgBase, const MediaImage2 *img);
226 C2GraphicView &&view,
234 C2GraphicView mView;
309 std::unique_ptr<const C2GraphicView> &&view,
316 std::unique_ptr<const C2GraphicView> mView;
DCodec2Buffer.cpp232 const C2GraphicView &view, const sp<AMessage> &format, bool copy) in GraphicView2MediaImageConverter()
674 const C2GraphicView mView;
702 C2GraphicView view(block->map().get()); in Allocate()
736 C2GraphicView &&view, in GraphicBlockBuffer()
838 std::unique_ptr<const C2GraphicView> view(std::make_unique<const C2GraphicView>( in Allocate()
841 std::unique_ptr<const C2GraphicView> holder; in Allocate()
904 std::unique_ptr<const C2GraphicView> &&view, in ConstGraphicBlockBuffer()
/frameworks/av/media/codec2/vndk/
DC2Buffer.cpp86 class GraphicViewBuddy : public C2GraphicView {
87 using C2GraphicView::C2GraphicView;
92 class AcquirableConstGraphicViewBuddy : public C2Acquirable<const C2GraphicView> {
97 class AcquirableGraphicViewBuddy : public C2Acquirable<C2GraphicView> {
1439 class C2GraphicView::Impl : public _C2MappedBlock2DImpl {
1445 C2GraphicView::C2GraphicView(std::shared_ptr<Impl> impl, const _C2PlanarSectionAspect &section) in C2GraphicView() function in C2GraphicView
1449 const uint8_t *const *C2GraphicView::data() const { in data()
1453 uint8_t *const *C2GraphicView::data() { in data()
1457 const C2PlanarLayout C2GraphicView::layout() const { in layout()
1461 const C2GraphicView C2GraphicView::subView(const C2Rect &rect) const { in subView()
[all …]
/frameworks/av/media/codec2/core/include/
DC2Buffer.h1974 class C2GraphicView : public _C2EditablePlanarSectionAspect {
2002 const C2GraphicView subView(const C2Rect &rect) const;
2003 C2GraphicView subView(const C2Rect &rect);
2012 C2GraphicView(std::shared_ptr<Impl> impl, const _C2PlanarSectionAspect &section);
2013 explicit C2GraphicView(c2_status_t error);
2033 C2Acquirable<const C2GraphicView> map() const;
2072 C2Acquirable<C2GraphicView> map();
/frameworks/av/media/codec2/components/hevc/
DC2SoftHevcDec.h75 C2GraphicView *outBuffer,
DC2SoftHevcEnc.h105 const C2GraphicView* const input,
DC2SoftHevcDec.cpp524 C2GraphicView *outBuffer, in setDecodeArgs()
845 C2GraphicView wView = mOutBlock->map().get(); in process()
998 C2GraphicView wView = mOutBlock->map().get(); in drainInternal()
DC2SoftHevcEnc.cpp854 const C2GraphicView* const input, in setEncodeArgs()
1115 std::shared_ptr<C2GraphicView> view; in process()
1122 view = std::make_shared<C2GraphicView>( in process()
/frameworks/av/media/codec2/components/mpeg2/
DC2SoftMpeg2Dec.h120 C2GraphicView *outBuffer,
DC2SoftMpeg2Dec.cpp593 C2GraphicView *outBuffer, in setDecodeArgs()
921 C2GraphicView wView = mOutBlock->map().get(); in process()
1055 C2GraphicView wView = mOutBlock->map().get(); in drainInternal()
/frameworks/av/media/codec2/components/avc/
DC2SoftAvcDec.h123 C2GraphicView *outBuffer,
DC2SoftAvcEnc.h235 const C2GraphicView *const input,
DC2SoftAvcDec.cpp531 C2GraphicView *outBuffer, in setDecodeArgs()
856 C2GraphicView wView = mOutBlock->map().get(); in process()
998 C2GraphicView wView = mOutBlock->map().get(); in drainInternal()
DC2SoftAvcEnc.cpp1481 const C2GraphicView *const input, in setEncodeArgs()
1805 std::shared_ptr<C2GraphicView> view; in process()
1809 view = std::make_shared<C2GraphicView>( in process()
/frameworks/av/media/codec2/sfplugin/tests/
DCCodecBuffers_test.cpp184 C2GraphicView view = block->map().get(); in TEST()
321 C2GraphicView view = block->map().get(); in TEST()
647 static void FillPlane(C2GraphicView &view, size_t index, uint8_t value) { in FillPlane()
663 C2GraphicView view = block->map().get(); in FillBlock()
/frameworks/av/media/codec2/tests/vndk/
DC2BufferTest.cpp526 C2Acquirable<C2GraphicView> graphicViewHolder = block->map(); in TEST_F()
527 C2GraphicView graphicView = graphicViewHolder.get(); in TEST_F()
554 C2Acquirable<const C2GraphicView> constViewHolder = constBlock.map(); in TEST_F()
555 const C2GraphicView constGraphicView = constViewHolder.get(); in TEST_F()
/frameworks/av/media/tests/benchmark/src/native/encoder/
DC2Encoder.cpp207 C2GraphicView view = block->map().get(); in encodeFrames()
/frameworks/av/media/codec2/components/mpeg4_h263/
DC2SoftMpeg4Enc.cpp550 std::shared_ptr<C2GraphicView> rView; in process()
555 rView = std::make_shared<C2GraphicView>( in process()
DC2SoftMpeg4Dec.cpp531 C2GraphicView wView = mOutBlock->map().get(); in process()
/frameworks/av/media/codec2/components/vpx/
DC2SoftVpxEnc.cpp852 std::shared_ptr<C2GraphicView> rView; in process()
856 rView = std::make_shared<C2GraphicView>( in process()
/frameworks/av/media/codec2/components/aom/
DC2SoftAomEnc.cpp799 std::shared_ptr<C2GraphicView> rView; in process()
803 rView = std::make_shared<C2GraphicView>( in process()
DC2SoftAomDec.cpp561 C2GraphicView wView = block->map().get(); in outputBuffer()
/frameworks/av/media/libstagefright/
DACodecBufferChannel.cpp313 const C2GraphicView view{block.map().get()}; in attachBuffer()

12