blob: c52a749d2f62071c5af902347ffe553ba9321f32 [file] [log] [blame]
/**
* Copyright 2021, The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package android.media.tv.tuner;
import android.media.tv.tuner.TunerFilterScIndexMask;
/**
* Filter Event for TS Record Filter.
*
* {@hide}
*/
parcelable TunerFilterTsRecordEvent {
char pid;
int tsIndexMask;
/**
* Indexes of record output
*/
TunerFilterScIndexMask scIndexMask;
/**
* Byte number from beginning of the filter's output
*/
long byteNumber;
/**
* If the current event contains extended information or not
*/
boolean isExtended;
/**
* The Presentation Time Stamp(PTS) for the audio or video frame. It is based on 90KHz
* and has the same format as the PTS in ISO/IEC 13818-1.
*/
long pts;
/**
* Specifies the address of the first macroblock in the slice defined in ITU-T Rec. H.264.
*/
int firstMbInSlice;
}