Merge "getBitWidthOfLengthField -> getLengthFieldBitWidth"

This commit is contained in:
Hongguang Chen
2022-01-22 01:56:54 +00:00
committed by Android (Google) Code Review
2 changed files with 2 additions and 2 deletions

View File

@@ -7080,7 +7080,7 @@ package android.media.tv.tuner.filter {
}
public abstract class SectionSettings extends android.media.tv.tuner.filter.Settings {
method public int getBitWidthOfLengthField();
method public int getLengthFieldBitWidth();
method public boolean isCrcEnabled();
method public boolean isRaw();
method public boolean isRepeat();

View File

@@ -82,7 +82,7 @@ public abstract class SectionSettings extends Settings {
* The section filter uses this for CRC (Cyclic redundancy check) checking when
* {@link #isCrcEnabled()} is {@code true}.
*/
public int getBitWidthOfLengthField() {
public int getLengthFieldBitWidth() {
return mBitWidthOfLengthField;
}