Home
last modified time | relevance | path

Searched refs:encoded_packet (Results 1 – 3 of 3) sorted by relevance

/frameworks/av/media/libstagefright/codecs/on2/enc/
DSoftVPXEncoder.cpp746 const vpx_codec_cx_pkt_t* encoded_packet; in onQueueFilled() local
748 while ((encoded_packet = vpx_codec_get_cx_data( in onQueueFilled()
750 if (encoded_packet->kind == VPX_CODEC_CX_FRAME_PKT) { in onQueueFilled()
751 outputBufferHeader->nTimeStamp = encoded_packet->data.frame.pts; in onQueueFilled()
753 if (encoded_packet->data.frame.flags & VPX_FRAME_IS_KEY) in onQueueFilled()
756 outputBufferHeader->nFilledLen = encoded_packet->data.frame.sz; in onQueueFilled()
763 encoded_packet->data.frame.buf, in onQueueFilled()
764 encoded_packet->data.frame.sz); in onQueueFilled()
/frameworks/av/media/codec2/components/vpx/
DC2SoftVpxEnc.cpp1054 const vpx_codec_cx_pkt_t* encoded_packet; in process() local
1055 while ((encoded_packet = vpx_codec_get_cx_data( in process()
1057 if (encoded_packet->kind == VPX_CODEC_CX_FRAME_PKT) { in process()
1060 c2_status_t err = pool->fetchLinearBlock(encoded_packet->data.frame.sz, usage, &block); in process()
1073 memcpy(wView.data(), encoded_packet->data.frame.buf, encoded_packet->data.frame.sz); in process()
1076 ALOGV("bytes generated %zu", encoded_packet->data.frame.sz); in process()
1084 createLinearBuffer(block, 0, encoded_packet->data.frame.sz); in process()
1085 if (encoded_packet->data.frame.flags & VPX_FRAME_IS_KEY) { in process()
1091 work->worklets.front()->output.ordinal.timestamp = encoded_packet->data.frame.pts; in process()
/frameworks/av/media/codec2/components/aom/
DC2SoftAomEnc.cpp1084 const aom_codec_cx_pkt_t* encoded_packet; in process() local
1085 while ((encoded_packet = aom_codec_get_cx_data(mCodecContext, &encoded_packet_iterator))) { in process()
1086 if (encoded_packet->kind == AOM_CODEC_CX_FRAME_PKT) { in process()
1089 c2_status_t err = pool->fetchLinearBlock(encoded_packet->data.frame.sz, usage, &block); in process()
1102 memcpy(wView.data(), encoded_packet->data.frame.buf, encoded_packet->data.frame.sz); in process()
1105 ALOGD("bytes generated %zu", encoded_packet->data.frame.sz); in process()
1114 createLinearBuffer(block, 0, encoded_packet->data.frame.sz); in process()
1115 if (encoded_packet->data.frame.flags & AOM_FRAME_IS_KEY) { in process()
1121 work->worklets.front()->output.ordinal.timestamp = encoded_packet->data.frame.pts; in process()