/hardware/google/aemu/host-common/include/host-common/ |
D | MediaSnapshotHelper.h | 50 void savePacket(const uint8_t* compressedFrame, size_t len, uint64_t pts); 57 uint64_t pts = 0, 60 mSnapshotState.saveDecodedFrame(std::move(data), width, height, pts, 71 uint64_t pts = 0, 74 mSnapshotState.saveDecodedFrame(texture, width, height, pts, xcolor); 83 void replay(std::function<void(uint8_t* data, size_t len, uint64_t pts)> 87 std::function<void(uint8_t* data, size_t len, uint64_t pts)> 96 uint64_t pts); 99 uint64_t pts); 102 uint64_t pts);
|
D | MediaH264DecoderPlugin.h | 77 uint64_t pts; member 85 uint64_t pts; member 98 bool savePacket(std::vector<uint8_t> data, uint64_t pts = 0) { 99 if (pts > 0 && savedPackets.size() > 0 && 100 pts == savedPackets.back().pts) { 103 PacketInfo pkt{data, pts}; 107 bool savePacket(const uint8_t* frame, size_t size, uint64_t pts = 0) { 108 if (pts > 0 && savedPackets.size() > 0 && 109 pts == savedPackets.back().pts) { 114 PacketInfo pkt{vec, pts}; [all …]
|
D | MediaSnapshotState.h | 38 uint64_t pts; member 46 uint64_t pts; member 50 bool savePacket(std::vector<uint8_t> data, uint64_t pts = 0); 57 uint64_t pts = 0, 63 uint64_t pts = 0, 96 bool savePacket(const uint8_t* frame, size_t size, uint64_t pts = 0);
|
D | MediaH264DecoderVideoToolBox.h | 84 …tSzBytes, int32_t* pRetErr, const uint8_t* frame, size_t szBytes, uint64_t pts, size_t consumedSzB… 94 CMTime pts, 109 void handleIDRFrame(const uint8_t* ptr, size_t szBytes, uint64_t pts); 110 void handleNonIDRFrame(const uint8_t* ptr, size_t szBytes, uint64_t pts); 144 void oneShotDecode(std::vector<uint8_t> & data, uint64_t pts);
|
D | MediaVpxDecoderGeneric.h | 88 void decode_internal(const uint8_t* data, size_t len, uint64_t pts); 89 void oneShotDecode(const uint8_t* data, size_t len, uint64_t pts); 90 void try_decode(const uint8_t* data, size_t len, uint64_t pts);
|
D | MediaH264DecoderGeneric.h | 60 void decodeFrameInternal(const uint8_t* data, size_t len, uint64_t pts); 62 void try_decode(const uint8_t* data, size_t len, uint64_t pts); 102 void oneShotDecode(const uint8_t* data, size_t len, uint64_t pts);
|
/hardware/google/aemu/host-common/ |
D | MediaSnapshotState.cpp | 34 bool MediaSnapshotState::savePacket(std::vector<uint8_t> data, uint64_t pts) { in savePacket() argument 35 if (pts > 0 && savedPackets.size() > 0 && pts == savedPackets.back().pts) { in savePacket() 38 PacketInfo pkt{data, pts}; in savePacket() 44 uint64_t pts) { in savePacket() argument 45 if (pts > 0 && savedPackets.size() > 0 && pts == savedPackets.back().pts) { in savePacket() 50 PacketInfo pkt{vec, pts}; in savePacket() 58 uint64_t pts, in saveDecodedFrame() argument 62 std::move(data), std::vector<uint32_t>{}, width, height, pts, in saveDecodedFrame() 70 uint64_t pts, in saveDecodedFrame() argument 77 pts, in saveDecodedFrame() [all …]
|
D | MediaVpxDecoderGeneric.cpp | 188 uint64_t pts) { in decode_internal() argument 190 try_decode(data, len, pts); in decode_internal() 192 mVideoHelper->decode(data, len, pts); in decode_internal() 198 uint64_t pts) { in try_decode() argument 203 mHwVideoHelper->decode(data, len, pts); in try_decode() 228 mVideoHelper->decode(data, len, pts); in try_decode() 260 *(param.p_user_priv) = pFrame->pts; in getImage() 261 VPX_DPRINT("got time %" PRIx64, pFrame->pts); in getImage() 325 uint64_t pts) { in oneShotDecode() argument 330 decode_internal(data, len, pts); in oneShotDecode() [all …]
|
D | MediaH264DecoderGeneric.cpp | 224 uint64_t inputPts = param.pts; in decodeFrame() 244 uint64_t pts) { in decodeFrameInternal() argument 247 try_decode(data, len, pts); in decodeFrameInternal() 249 mVideoHelper->decode(data, len, pts); in decodeFrameInternal() 255 uint64_t pts) { in try_decode() argument 259 mHwVideoHelper->decode(data, len, pts); in try_decode() 274 [=](const uint8_t* data, size_t len, uint64_t pts) { in try_decode() argument 275 this->oneShotDecode(data, len, pts); in try_decode() 282 mVideoHelper->decode(data, len, pts); in try_decode() 368 *retPts = pFrame->pts; in getImage() [all …]
|
D | MediaH264DecoderVideoToolBox.cpp | 71 CMTime pts, in videoToolboxDecompressCallback() argument 86 ptr->mOutputPts = pts.value; in videoToolboxDecompressCallback() 297 uint64_t pts = param.pts; in decodeFrame() local 299 decodeFrameInternal(param.pConsumedBytes, param.pDecoderErrorCode, frame, szBytes, pts, 0); in decodeFrame() 302 void MediaH264DecoderVideoToolBox::oneShotDecode(std::vector<uint8_t> & data, uint64_t pts) { in oneShotDecode() argument 304 decodeFrameInternal(nullptr, nullptr, data.data(), data.size(), pts, 0); in oneShotDecode() 307 …tSzBytes, int32_t* pRetErr, const uint8_t* frame, size_t szBytes, uint64_t pts, size_t consumedSzB… in decodeFrameInternal() argument 395 handleIDRFrame(currentNalu, currentNaluSize, pts); in decodeFrameInternal() 399 mSnapshotState.savePacket(currentNalu, currentNaluSize, pts); in decodeFrameInternal() 403 handleNonIDRFrame(currentNalu, currentNaluSize, pts); in decodeFrameInternal() [all …]
|
D | MediaH264DecoderFfmpeg.cpp | 196 uint64_t pts) { in decodeFrameDirect() argument 200 param.pts = pts; in decodeFrameDirect() 214 uint64_t inputPts = param.pts; in decodeFrameInternal() 268 mPacket.pts = inputPts; in decodeFrameInternal() 335 mOutputPts = mFrame->pts; in copyFrame() 336 H264_DPRINT("copied Frame and it has presentation time at %lld", (long long)(mFrame->pts)); in copyFrame() 451 uint64_t pts) { in oneShotDecode() argument 455 mPacket.pts = pts; in oneShotDecode() 456 H264_DPRINT("decoding pts %lld packet size %d", (long long)pts, (int)data.size()); in oneShotDecode() 486 oneShotDecode(pkt.data, pkt.pts); in load() [all …]
|
D | MediaFfmpegVideoHelper.cpp | 153 (long long)(mFrame->pts)); in copyFrame() 182 (int)mFrame->width, (int)mFrame->height, (uint64_t)mFrame->pts, in fetchAllFrames() 190 uint64_t pts) { in decode() argument 195 mPacket.pts = pts; in decode()
|
D | MediaSnapshotHelper.cpp | 120 std::function<void(uint8_t* data, size_t len, uint64_t pts)> in replay() 132 oneShotDecode(pkt.data.data(), pkt.data.size(), pkt.pts); in replay() 140 std::function<void(uint8_t* data, size_t len, uint64_t pts)> in load()
|
/hardware/interfaces/tv/tuner/aidl/aidl_api/android.hardware.tv.tuner/2/android/hardware/tv/tuner/ |
D | DemuxFilterTemiEvent.aidl | 38 long pts;
|
D | DemuxFilterMmtpRecordEvent.aidl | 40 long pts;
|
D | DemuxFilterTsRecordEvent.aidl | 42 long pts;
|
/hardware/interfaces/tv/tuner/aidl/aidl_api/android.hardware.tv.tuner/current/android/hardware/tv/tuner/ |
D | DemuxFilterTemiEvent.aidl | 38 long pts;
|
D | DemuxFilterMmtpRecordEvent.aidl | 40 long pts;
|
D | DemuxFilterTsRecordEvent.aidl | 42 long pts;
|
/hardware/interfaces/tv/tuner/aidl/aidl_api/android.hardware.tv.tuner/1/android/hardware/tv/tuner/ |
D | DemuxFilterTemiEvent.aidl | 38 long pts;
|
D | DemuxFilterMmtpRecordEvent.aidl | 40 long pts;
|
D | DemuxFilterTsRecordEvent.aidl | 42 long pts;
|
/hardware/interfaces/tv/tuner/aidl/android/hardware/tv/tuner/ |
D | DemuxFilterTemiEvent.aidl | 29 long pts;
|
D | DemuxFilterMmtpRecordEvent.aidl | 39 long pts;
|
/hardware/google/pixel/vibrator/cs40l25/ |
D | TEST_MAPPING | 15 "pts-experimental": [
|