Home
last modified time | relevance | path

Searched refs:demux (Results 1 – 15 of 15) sorted by relevance

/hardware/interfaces/tv/tuner/1.0/
DIDvrCallback.hal21 * Notify the client a new status of the demux's record.
23 * @param status a new status of the demux's record.
28 * Notify the client a new status of the demux's playback.
30 * @param status a new status of the demux's playback.
DIDemux.hal31 * Set a frontend resource as data input of the demux
34 * this demux instance. A demux instance can have only one data source.
44 * Open a new filter in the demux
46 * It is used by the client to open a filter in the demux.
63 * Open time filter of the demux
65 * It is used by the client to open time filter of the demux.
109 * It is used by the client to release the demux instance. HAL clear
119 * Open a DVR (Digital Video Record) instance in the demux
140 * It is used by the client to connect CI-CAM. The demux uses the output
154 * It is used by the client to disconnect CI-CAM. The demux will use the
DITuner.hal63 * @return demuxId newly created demux id.
64 * @return demux the newly created demux interface.
66 openDemux() generates (Result result, DemuxId demuxId, IDemux demux);
DIDescrambler.hal27 * Set a demux as source of the descrambler
29 * It is used by the client to specify a demux as source of this
33 * @param demuxId the id of the demux to be used as descrambler's source.
DIFilter.hal30 * Message Queue. The data in FMQ is filtered out from demux input or upper
80 * will be stopped and removed automatically if the demux is closed.
134 * A filter uses demux as data source by default. If the data was packetized
140 * use demux as data source if the filter instance is NULL.
DITimeFilter.hal27 * filtering. The time will be incremented locally. The demux discards
80 * It is used by the client to release the demux instance. HAL clear
Dtypes.hal1696 /* Demux ID is used to associate with a hardware demux resource. */
2606 * A data format in demux's output or input according to ISO/IEC 13818-1.
2669 * The space of the demux's playback is empty.
2673 * The spece of the demux's playback is almost empty.
2677 * The space of the demux's playback is almost full.
2681 * The space of the demux's playback is full.
/hardware/interfaces/tv/tuner/1.0/default/
DTimeFilter.cpp31 TimeFilter::TimeFilter(sp<Demux> demux) { in TimeFilter() argument
32 mDemux = demux; in TimeFilter()
DTuner.cpp84 sp<Demux> demux = new Demux(demuxId, this); in openDemux() local
85 mDemuxes[demuxId] = demux; in openDemux()
87 _hidl_cb(Result::SUCCESS, demuxId, demux); in openDemux()
DTimeFilter.h44 TimeFilter(sp<Demux> demux);
DDvr.cpp33 Dvr::Dvr(DvrType type, uint32_t bufferSize, const sp<IDvrCallback>& cb, sp<Demux> demux) { in Dvr() argument
37 mDemux = demux; in Dvr()
DDvr.h56 Dvr(DvrType type, uint32_t bufferSize, const sp<IDvrCallback>& cb, sp<Demux> demux);
DFilter.cpp34 const sp<IFilterCallback>& cb, sp<Demux> demux) { in Filter() argument
39 mDemux = demux; in Filter()
DFilter.h55 const sp<IFilterCallback>& cb, sp<Demux> demux);
/hardware/interfaces/tv/tuner/1.0/vts/functional/
DVtsHalTvTunerV1_0TargetTest.cpp765 mService->openDemux([&](Result result, uint32_t demuxId, const sp<IDemux>& demux) { in createDemux() argument
766 mDemux = demux; in createDemux()