Commit 4076b08e by Oliver Woodman

Naming tweak

parent b5100886
......@@ -56,7 +56,7 @@ import com.google.android.exoplayer.util.ParsableByteArray;
payloadSize += b;
} while (b == 0xFF);
// Process the payload. We only support EIA-608 payloads currently.
if (Eia608Parser.inspectSeiMessage(payloadType, payloadSize, seiBuffer)) {
if (Eia608Parser.isSeiMessageEia608(payloadType, payloadSize, seiBuffer)) {
startSample(pesTimeUs);
appendData(seiBuffer, payloadSize);
commitSample(true);
......
......@@ -189,7 +189,7 @@ public class Eia608Parser {
* @param payload A {@link ParsableByteArray} containing the payload.
* @return True if the sei message contains EIA-608. False otherwise.
*/
public static boolean inspectSeiMessage(int payloadType, int payloadLength,
public static boolean isSeiMessageEia608(int payloadType, int payloadLength,
ParsableByteArray payload) {
if (payloadType != PAYLOAD_TYPE_CC || payloadLength < 8) {
return false;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment