Skip to content
Snippets Groups Projects
Commit e7eee730 authored by Amy Zhang's avatar Amy Zhang
Browse files

Rename RecordEvent getFirstMbInSlice into getFirstMacroblockInSlice

Test: atest TunerTest
Bug: 172934764
Change-Id: Ie5803509b0ee3e9b3e7279eccf2249dfe29792e5
parent 782672aa
No related branches found
No related tags found
No related merge requests found
......@@ -5414,7 +5414,7 @@ package android.media.tv.tuner.filter {
 
public class MmtpRecordEvent extends android.media.tv.tuner.filter.FilterEvent {
method public long getDataLength();
method public int getFirstMbInSlice();
method public int getFirstMacroblockInSlice();
method public int getMpuSequenceNumber();
method public long getPts();
method public int getScHevcIndexMask();
......@@ -5590,7 +5590,7 @@ package android.media.tv.tuner.filter {
 
public class TsRecordEvent extends android.media.tv.tuner.filter.FilterEvent {
method public long getDataLength();
method public int getFirstMbInSlice();
method public int getFirstMacroblockInSlice();
method public int getPacketId();
method public long getPts();
method public int getScIndexMask();
......
......@@ -5354,7 +5354,7 @@ package android.media.tv.tuner.filter {
 
public class MmtpRecordEvent extends android.media.tv.tuner.filter.FilterEvent {
method public long getDataLength();
method public int getFirstMbInSlice();
method public int getFirstMacroblockInSlice();
method public int getMpuSequenceNumber();
method public long getPts();
method public int getScHevcIndexMask();
......@@ -5530,7 +5530,7 @@ package android.media.tv.tuner.filter {
 
public class TsRecordEvent extends android.media.tv.tuner.filter.FilterEvent {
method public long getDataLength();
method public int getFirstMbInSlice();
method public int getFirstMacroblockInSlice();
method public int getPacketId();
method public long getPts();
method public int getScIndexMask();
......
......@@ -94,7 +94,7 @@ public class MmtpRecordEvent extends FilterEvent {
* {@link android.media.tv.tuner.TunerVersionChecker.getTunerVersion()} to get the version
* information.
*/
public int getFirstMbInSlice() {
public int getFirstMacroblockInSlice() {
return mFirstMbInSlice;
}
......
......@@ -99,7 +99,7 @@ public class TsRecordEvent extends FilterEvent {
* {@link android.media.tv.tuner.TunerVersionChecker.getTunerVersion()} to get the version
* information.
*/
public int getFirstMbInSlice() {
public int getFirstMacroblockInSlice() {
return mFirstMbInSlice;
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment