/aosp12/frameworks/base/media/jni/tuner/ |
H A D | DemuxClient.cpp | 40 mDemux = NULL; in ~DemuxClient() 46 mDemux = demux; in setHidlDemux() 55 if (mDemux != NULL) { in setFrontendDataSource() 77 if (mDemux != NULL) { in openFilter() 100 if (mDemux != NULL) { in openTimeFilter() 122 if (mDemux != NULL) { in getAvSyncHwId() 149 if (mDemux != NULL) { in getAvSyncTime() 177 if (mDemux != NULL) { in openDvr() 196 if (mDemux != NULL) { in connectCiCam() 209 if (mDemux != NULL) { in disconnectCiCam() [all …]
|
H A D | DemuxClient.h | 128 sp<IDemux> mDemux; member
|
/aosp12/frameworks/av/services/tuner/ |
H A D | TunerDemux.cpp | 36 mDemux = demux; in TunerDemux() 41 mDemux = nullptr; in ~TunerDemux() 45 if (mDemux == nullptr) { in setFrontendDataSource() 62 if (mDemux == nullptr) { in openFilter() 106 if (mDemux == nullptr) { in openTimeFilter() 126 if (mDemux == nullptr) { in getAvSyncHwId() 148 if (mDemux == nullptr) { in getAvSyncTime() 170 if (mDemux == nullptr) { in openDvr() 193 if (mDemux == nullptr) { in connectCiCam() 206 if (mDemux == nullptr) { in disconnectCiCam() [all …]
|
H A D | TunerDemux.h | 62 sp<IDemux> mDemux;
|
/aosp12/hardware/interfaces/tv/tuner/1.0/vts/functional/ |
H A D | DemuxTests.cpp | 22 mDemux = demuxSp; in openDemux() 31 EXPECT_TRUE(mDemux) << "Test with openDemux first."; in setDemuxFrontendDataSource() 32 auto status = mDemux->setFrontendDataSource(frontendId); in setDemuxFrontendDataSource() 37 if (!mDemux) { in getDemuxCaps() 50 EXPECT_TRUE(mDemux) << "Test with openDemux first."; in closeDemux() 51 auto status = mDemux->close(); in closeDemux() 52 mDemux = nullptr; in closeDemux() 57 EXPECT_TRUE(mDemux) << "Demux is not opened yet."; in getAvSyncId() 59 mDemux->getAvSyncHwId(filter, [&](Result result, uint32_t id) { in getAvSyncId() 67 EXPECT_TRUE(mDemux) << "Demux is not opened yet."; in getAvSyncTime() [all …]
|
H A D | DvrTests.cpp | 212 EXPECT_TRUE(mDemux) << "Test with openDemux first."; in openDvrInDemux() 256 EXPECT_TRUE(mDemux) << "Test with openDemux first."; in getDvrPlaybackMQDescriptor() 269 EXPECT_TRUE(mDemux) << "Test with openDemux first."; in getDvrRecordMQDescriptor() 282 EXPECT_TRUE(mDemux) << "Test with openDemux first."; in attachFilterToDvr() 292 EXPECT_TRUE(mDemux) << "Test with openDemux first."; in detachFilterToDvr() 302 EXPECT_TRUE(mDemux) << "Test with openDemux first."; in startDvrPlayback() 312 EXPECT_TRUE(mDemux) << "Test with openDemux first."; in stopDvrPlayback() 321 ASSERT_TRUE(mDemux); in closeDvrPlayback() 328 EXPECT_TRUE(mDemux) << "Test with openDemux first."; in startDvrRecord() 338 EXPECT_TRUE(mDemux) << "Test with openDemux first."; in stopDvrRecord() [all …]
|
H A D | FilterTests.cpp | 137 EXPECT_TRUE(mDemux) << "Test with openDemux first."; in openFilterInDemux() 143 mDemux->openFilter(type, bufferSize, mFilterCallback, in openFilterInDemux() 152 if (!mDemux) { in openTimeFilterInDemux() 159 mDemux->openTimeFilter([&](Result result, const sp<ITimeFilter>& filter) { in openTimeFilterInDemux() 191 EXPECT_TRUE(mDemux) << "Test with openDemux first."; in getNewlyOpenedFilterId()
|
H A D | DvrTests.h | 152 void setDemux(sp<IDemux> demux) { mDemux = demux; } in setDemux() 189 sp<IDemux> mDemux; variable
|
H A D | FilterTests.h | 138 void setDemux(sp<IDemux> demux) { mDemux = demux; } in setDemux() 166 sp<IDemux> mDemux; variable
|
H A D | DemuxTests.h | 58 sp<IDemux> mDemux; variable
|
/aosp12/frameworks/ex/framesequence/jni/ |
H A D | FrameSequence_webp.h | 35 if (!mDemux) { in getWidth() 38 return WebPDemuxGetI(mDemux, WEBP_FF_CANVAS_WIDTH); in getWidth() 42 if (!mDemux) { in getHeight() 45 return WebPDemuxGetI(mDemux, WEBP_FF_CANVAS_HEIGHT); in getHeight() 53 if (!mDemux) { in getFrameCount() 56 return WebPDemuxGetI(mDemux, WEBP_FF_FRAME_COUNT); in getFrameCount() 69 WebPDemuxer* getDemuxer() const { return mDemux; } in getDemuxer() 77 WebPDemuxer* mDemux; variable
|
H A D | FrameSequence_webp.cpp | 60 int ok = WebPDemuxGetFrame(mDemux, 1, &curr); in constructDependencyChain() 65 ok = WebPDemuxGetFrame(mDemux, i + 1, &curr); // Get ith frame. in constructDependencyChain() 88 : mDemux(NULL) in FrameSequence_webp() 125 mDemux = WebPDemux(&mData); in FrameSequence_webp() 126 if (!mDemux) { in FrameSequence_webp() 130 mLoopCount = WebPDemuxGetI(mDemux, WEBP_FF_LOOP_COUNT); in FrameSequence_webp() 131 mFormatFlags = WebPDemuxGetI(mDemux, WEBP_FF_FORMAT_FLAGS); in FrameSequence_webp() 140 WebPDemuxDelete(mDemux); in ~FrameSequence_webp()
|
/aosp12/hardware/interfaces/tv/tuner/1.1/vts/functional/ |
H A D | DemuxTests.cpp | 22 mDemux = demuxSp; in openDemux() 31 EXPECT_TRUE(mDemux) << "Test with openDemux first."; in setDemuxFrontendDataSource() 32 auto status = mDemux->setFrontendDataSource(frontendId); in setDemuxFrontendDataSource() 37 EXPECT_TRUE(mDemux) << "Test with openDemux first."; in closeDemux() 38 auto status = mDemux->close(); in closeDemux() 39 mDemux = nullptr; in closeDemux()
|
H A D | DvrTests.cpp | 211 EXPECT_TRUE(mDemux) << "Test with openDemux first."; in openDvrInDemux() 255 EXPECT_TRUE(mDemux) << "Test with openDemux first."; in getDvrPlaybackMQDescriptor() 268 EXPECT_TRUE(mDemux) << "Test with openDemux first."; in getDvrRecordMQDescriptor() 281 EXPECT_TRUE(mDemux) << "Test with openDemux first."; in attachFilterToDvr() 291 EXPECT_TRUE(mDemux) << "Test with openDemux first."; in detachFilterToDvr() 301 EXPECT_TRUE(mDemux) << "Test with openDemux first."; in startDvrPlayback() 311 EXPECT_TRUE(mDemux) << "Test with openDemux first."; in stopDvrPlayback() 320 ASSERT_TRUE(mDemux); in closeDvrPlayback() 327 EXPECT_TRUE(mDemux) << "Test with openDemux first."; in startDvrRecord() 337 EXPECT_TRUE(mDemux) << "Test with openDemux first."; in stopDvrRecord() [all …]
|
H A D | FilterTests.cpp | 145 EXPECT_TRUE(mDemux) << "Test with openDemux first."; in openFilterInDemux() 151 mDemux->openFilter(type, bufferSize, mFilterCallback, in openFilterInDemux() 162 EXPECT_TRUE(mDemux) << "Test with openDemux first."; in getNewlyOpenedFilterId_64bit()
|
H A D | DvrTests.h | 153 void setDemux(sp<IDemux> demux) { mDemux = demux; } in setDemux() 190 sp<IDemux> mDemux; variable
|
H A D | DemuxTests.h | 55 sp<IDemux> mDemux; variable
|
H A D | FilterTests.h | 152 void setDemux(sp<IDemux> demux) { mDemux = demux; } in setDemux() 225 sp<IDemux> mDemux; variable
|
/aosp12/hardware/interfaces/tv/tuner/1.1/default/ |
H A D | Dvr.cpp | 37 mDemux = demux; in Dvr() 84 if (!mDemux->attachRecordFilter(filterId)) { in attachFilter() 114 if (!mDemux->detachRecordFilter(filterId)) { in detachFilter() 141 mDemux->setIsRecording(mType == DvrType::RECORD); in start() 156 mDemux->setIsRecording(false); in stop() 223 bool isRecording = mDemux->isRecording(); in playbackThreadLoop() 402 if (pid == mDemux->getFilterTpid(it->first)) { in processEsDataOnPlayback() 431 if (pid == mDemux->getFilterTpid(it->first)) { in startTpidFilter() 432 mDemux->updateFilterOutput(it->first, data); in startTpidFilter() 440 return mDemux->startRecordFilterDispatcher(); in startFilterDispatcher() [all …]
|
H A D | TimeFilter.h | 58 sp<Demux> mDemux;
|
H A D | TimeFilter.cpp | 32 mDemux = demux; in TimeFilter()
|
H A D | Dvr.h | 97 sp<Demux> mDemux;
|
/aosp12/hardware/interfaces/tv/tuner/1.0/default/ |
H A D | Dvr.cpp | 37 mDemux = demux; in Dvr() 74 if (!mDemux->attachRecordFilter(filterId)) { in attachFilter() 96 if (!mDemux->detachRecordFilter(filterId)) { in detachFilter() 119 mDemux->setIsRecording(mType == DvrType::RECORD); in start() 135 mDemux->setIsRecording(false); in stop() 371 mDemux->sendFrontendInputToRecord(frameData); in processEsDataOnPlayback() 374 if (pid == mDemux->getFilterTpid(it->first)) { in processEsDataOnPlayback() 400 if (pid == mDemux->getFilterTpid(it->first)) { in startTpidFilter() 401 mDemux->updateFilterOutput(it->first, data); in startTpidFilter() 409 return mDemux->startRecordFilterDispatcher(); in startFilterDispatcher() [all …]
|
H A D | TimeFilter.h | 62 sp<Demux> mDemux;
|
H A D | TimeFilter.cpp | 32 mDemux = demux; in TimeFilter()
|