From a2c195d5e0c6f941031a2caf994d54554abcb637 Mon Sep 17 00:00:00 2001 From: Hongguang Date: Thu, 16 Dec 2021 09:49:48 -0800 Subject: [PATCH] Section filter isRepeat clarification. Bug: 210999986 Test: make Change-Id: I07fdd17a3c9d4f573f92ced6b89b7ab4bb570948 --- .../hardware/tv/tuner/DemuxFilterSectionSettings.aidl | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/tv/tuner/aidl/android/hardware/tv/tuner/DemuxFilterSectionSettings.aidl b/tv/tuner/aidl/android/hardware/tv/tuner/DemuxFilterSectionSettings.aidl index 2102aa0a90..f6788ee131 100644 --- a/tv/tuner/aidl/android/hardware/tv/tuner/DemuxFilterSectionSettings.aidl +++ b/tv/tuner/aidl/android/hardware/tv/tuner/DemuxFilterSectionSettings.aidl @@ -32,7 +32,16 @@ parcelable DemuxFilterSectionSettings { boolean isCheckCrc; /** - * true if the filter repeats the data with the same version + * true if the filter repeats the data. + * + * If false, for DemuxFilterSectionSettingsConditionTableInfo, HAL filters out all sections + * based on tableId and version, and stops filtering data. For DemuxFilterSectionBits, HAL + * filters out first section which matches the DemuxFilterSectionBits configuration, and stops + * filtering data. + * + * If true, for DemuxFilterSectionSettingsConditionTableInfo, HAL filters out all sections based + * on tableId and version, and repeats. For DemuxFilterSectionBits, HAL filters out sections + * which match the DemuxFilterSectionBits configuration, and repeats. */ boolean isRepeat;