package ie;

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

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

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

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

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

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

    public f1(ConstraintLayout constraintLayout, CustomImageView customImageView, TextView textView, PlayingView playingView) {
        this.f26829a = constraintLayout;
        this.f26830b = customImageView;
        this.f26831c = textView;
        this.f26832d = playingView;
    }

    @NonNull
    public static f1 inflate(@NonNull LayoutInflater layoutInflater, @Nullable ViewGroup viewGroup, boolean z10) {
        View viewInflate = layoutInflater.inflate(R.layout.item_epg_channel, viewGroup, false);
        if (z10) {
            viewGroup.addView(viewInflate);
        }
        int i10 = R.id.live_channel_image;
        CustomImageView customImageView = (CustomImageView) v3.b.findChildViewById(viewInflate, R.id.live_channel_image);
        if (customImageView != null) {
            i10 = R.id.live_channel_title;
            TextView textView = (TextView) v3.b.findChildViewById(viewInflate, R.id.live_channel_title);
            if (textView != null) {
                i10 = R.id.playing_view;
                PlayingView playingView = (PlayingView) v3.b.findChildViewById(viewInflate, R.id.playing_view);
                if (playingView != null) {
                    return new f1((ConstraintLayout) viewInflate, customImageView, textView, playingView);
                }
            }
        }
        throw new NullPointerException("Missing required view with ID: ".concat(viewInflate.getResources().getResourceName(i10)));
    }

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