Home
last modified time | relevance | path

Searched refs:pts (Results 1 – 25 of 61) sorted by relevance

123

/hardware/google/aemu/host-common/include/host-common/
DMediaSnapshotHelper.h50 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);
DMediaH264DecoderPlugin.h77 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 …]
DMediaSnapshotState.h38 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);
DMediaH264DecoderVideoToolBox.h84 …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);
DMediaVpxDecoderGeneric.h88 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);
DMediaH264DecoderGeneric.h60 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/
DMediaSnapshotState.cpp34 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 …]
DMediaVpxDecoderGeneric.cpp188 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 …]
DMediaH264DecoderGeneric.cpp224 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 …]
DMediaH264DecoderVideoToolBox.cpp71 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 …]
DMediaH264DecoderFfmpeg.cpp196 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 …]
DMediaFfmpegVideoHelper.cpp153 (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()
DMediaSnapshotHelper.cpp120 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/
DDemuxFilterTemiEvent.aidl38 long pts;
DDemuxFilterMmtpRecordEvent.aidl40 long pts;
DDemuxFilterTsRecordEvent.aidl42 long pts;
/hardware/interfaces/tv/tuner/aidl/aidl_api/android.hardware.tv.tuner/current/android/hardware/tv/tuner/
DDemuxFilterTemiEvent.aidl38 long pts;
DDemuxFilterMmtpRecordEvent.aidl40 long pts;
DDemuxFilterTsRecordEvent.aidl42 long pts;
/hardware/interfaces/tv/tuner/aidl/aidl_api/android.hardware.tv.tuner/1/android/hardware/tv/tuner/
DDemuxFilterTemiEvent.aidl38 long pts;
DDemuxFilterMmtpRecordEvent.aidl40 long pts;
DDemuxFilterTsRecordEvent.aidl42 long pts;
/hardware/interfaces/tv/tuner/aidl/android/hardware/tv/tuner/
DDemuxFilterTemiEvent.aidl29 long pts;
DDemuxFilterMmtpRecordEvent.aidl39 long pts;
/hardware/google/pixel/vibrator/cs40l25/
DTEST_MAPPING15 "pts-experimental": [

123