Rabbit-R1/android (non root)/java/sources/com/google/android/exoplayer2/text/CueEncoder.java
2024-05-21 17:08:36 -04:00

21 lines
678 B
Java

package com.google.android.exoplayer2.text;
import android.os.Bundle;
import android.os.Parcel;
import com.google.android.exoplayer2.util.BundleableUtil;
import java.util.ArrayList;
import java.util.List;
/* loaded from: classes2.dex */
public final class CueEncoder {
public byte[] encode(List<Cue> list) {
ArrayList<Bundle> bundleArrayList = BundleableUtil.toBundleArrayList(list);
Bundle bundle = new Bundle();
bundle.putParcelableArrayList("c", bundleArrayList);
Parcel obtain = Parcel.obtain();
obtain.writeBundle(bundle);
byte[] marshall = obtain.marshall();
obtain.recycle();
return marshall;
}
}