package ie;

import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.LinearLayout;
import android.widget.ProgressBar;
import android.widget.TextView;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import org.drive_hunter.R;
import xyz.stream.view.PlayingView;

/* JADX INFO: loaded from: classes3.dex */
public final class g2 implements v3.a {

    /* JADX INFO: renamed from: a, reason: collision with root package name */
    public final LinearLayout f26884a;

    /* JADX INFO: renamed from: b, reason: collision with root package name */
    public final PlayingView f26885b;

    /* JADX INFO: renamed from: c, reason: collision with root package name */
    public final ProgressBar f26886c;

    /* JADX INFO: renamed from: d, reason: collision with root package name */
    public final TextView f26887d;

    /* JADX INFO: renamed from: e, reason: collision with root package name */
    public final TextView f26888e;

    public g2(LinearLayout linearLayout, PlayingView playingView, ProgressBar progressBar, TextView textView, TextView textView2) {
        this.f26884a = linearLayout;
        this.f26885b = playingView;
        this.f26886c = progressBar;
        this.f26887d = textView;
        this.f26888e = textView2;
    }

    @NonNull
    public static g2 inflate(@NonNull LayoutInflater layoutInflater, @Nullable ViewGroup viewGroup, boolean z10) {
        View viewInflate = layoutInflater.inflate(R.layout.item_player_episodes, viewGroup, false);
        if (z10) {
            viewGroup.addView(viewInflate);
        }
        int i10 = R.id.iv_playing;
        PlayingView playingView = (PlayingView) v3.b.findChildViewById(viewInflate, R.id.iv_playing);
        if (playingView != null) {
            i10 = R.id.pb_video_progress;
            ProgressBar progressBar = (ProgressBar) v3.b.findChildViewById(viewInflate, R.id.pb_video_progress);
            if (progressBar != null) {
                i10 = R.id.tv_video_order;
                TextView textView = (TextView) v3.b.findChildViewById(viewInflate, R.id.tv_video_order);
                if (textView != null) {
                    i10 = R.id.tv_video_title;
                    TextView textView2 = (TextView) v3.b.findChildViewById(viewInflate, R.id.tv_video_title);
                    if (textView2 != null) {
                        return new g2((LinearLayout) viewInflate, playingView, progressBar, textView, textView2);
                    }
                }
            }
        }
        throw new NullPointerException("Missing required view with ID: ".concat(viewInflate.getResources().getResourceName(i10)));
    }

    @Override // v3.a
    public final View getRoot() {
        return this.f26884a;
    }
}
