Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 55c0fda8 authored by Android Build Prod User's avatar Android Build Prod User Committed by Android (Google) Code Review
Browse files

Merge "Deprecate tuner filter 32 bit ID getter API."

parents f3e4bb82 ed12cd22
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -6197,7 +6197,7 @@ package android.media.tv.tuner.filter {
    method public void close();
    method public int configure(@NonNull android.media.tv.tuner.filter.FilterConfiguration);
    method public int flush();
    method public int getId();
    method @Deprecated public int getId();
    method public long getIdLong();
    method public int read(@NonNull byte[], long, long);
    method public int setDataSource(@Nullable android.media.tv.tuner.filter.Filter);
+2 −2
Original line number Diff line number Diff line
@@ -333,6 +333,7 @@ public class Filter implements AutoCloseable {
    /**
     * Gets the filter Id in 32-bit. For any Tuner SoC that supports 64-bit filter architecture,
     * use {@link #getIdLong()}.
     * @deprecated Use {@link #getIdLong()} for both 32-bit and 64-bit filter architectures.
     */
    public int getId() {
        synchronized (mLock) {
@@ -342,8 +343,7 @@ public class Filter implements AutoCloseable {
    }

    /**
     * Gets the 64-bit filter Id. For any Tuner SoC that supports 32-bit filter architecture,
     * use {@link #getId()}.
     * Gets the filter Id.
     */
    public long getIdLong() {
        synchronized (mLock) {