Home
last modified time | relevance | path

Searched refs:avStreamType (Results 1 – 8 of 8) sorted by relevance

/aosp12/frameworks/av/services/tuner/aidl/android/media/tv/tuner/
H A DITunerFilter.aidl64 void configureAvStreamType(in int avStreamType); in configureAvStreamType() argument
/aosp12/hardware/interfaces/tv/tuner/1.1/
H A DIFilter.hal79 * @param avStreamType the stream type for A/V.
85 configureAvStreamType(AvStreamType avStreamType) generates (Result result);
/aosp12/frameworks/av/services/tuner/
H A DTunerFilter.cpp176 Status TunerFilter::configureAvStreamType(int avStreamType) { in configureAvStreamType() argument
183 if (!getHidlAvStreamType(avStreamType, type)) { in configureAvStreamType()
572 bool TunerFilter::getHidlAvStreamType(int avStreamType, AvStreamType& type) { in getHidlAvStreamType() argument
574 type.audio(static_cast<AudioStreamType>(avStreamType)); in getHidlAvStreamType()
579 type.video(static_cast<VideoStreamType>(avStreamType)); in getHidlAvStreamType()
H A DTunerFilter.h103 Status configureAvStreamType(int avStreamType) override;
166 bool getHidlAvStreamType(int avStreamType, AvStreamType& type);
/aosp12/frameworks/base/media/jni/tuner/
H A DFilterClient.cpp145 Result FilterClient::configureAvStreamType(AvStreamType avStreamType) { in configureAvStreamType() argument
148 switch (avStreamType.getDiscriminator()) { in configureAvStreamType()
150 type = (int)avStreamType.audio(); in configureAvStreamType()
153 type = (int)avStreamType.video(); in configureAvStreamType()
161 return mFilter_1_1->configureAvStreamType(avStreamType); in configureAvStreamType()
H A DFilterClient.h172 Result configureAvStreamType(AvStreamType avStreamType);
/aosp12/hardware/interfaces/tv/tuner/1.1/default/
H A DFilter.cpp281 Return<Result> Filter::configureAvStreamType(const V1_1::AvStreamType& avStreamType) { in configureAvStreamType() argument
288 switch (avStreamType.getDiscriminator()) { in configureAvStreamType()
290 mAudioStreamType = static_cast<uint32_t>(avStreamType.audio()); in configureAvStreamType()
293 mVideoStreamType = static_cast<uint32_t>(avStreamType.video()); in configureAvStreamType()
H A DFilter.h85 virtual Return<Result> configureAvStreamType(const V1_1::AvStreamType& avStreamType) override;