package com.discord.databinding; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.ImageView; import android.widget.ProgressBar; import androidx.annotation.NonNull; import androidx.viewbinding.ViewBinding; import com.facebook.drawee.view.SimpleDraweeView; import com.google.android.exoplayer2.ui.PlayerView; public final class InlineMediaViewBinding implements ViewBinding { @NonNull public final View a; @NonNull public final ImageView b; @NonNull /* renamed from: c reason: collision with root package name */ public final SimpleDraweeView f1615c; @NonNull public final ProgressBar d; @NonNull public final ImageView e; @NonNull public final PlayerView f; @NonNull public final ImageView g; public InlineMediaViewBinding(@NonNull View view, @NonNull ImageView imageView, @NonNull SimpleDraweeView simpleDraweeView, @NonNull ProgressBar progressBar, @NonNull ImageView imageView2, @NonNull PlayerView playerView, @NonNull ImageView imageView3) { this.a = view; this.b = imageView; this.f1615c = simpleDraweeView; this.d = progressBar; this.e = imageView2; this.f = playerView; this.g = imageView3; } @NonNull public static InlineMediaViewBinding a(@NonNull LayoutInflater layoutInflater, @NonNull ViewGroup viewGroup) { layoutInflater.inflate(2131558528, viewGroup); int i = 2131363662; ImageView imageView = (ImageView) viewGroup.findViewById(2131363662); if (imageView != null) { i = 2131363663; SimpleDraweeView simpleDraweeView = (SimpleDraweeView) viewGroup.findViewById(2131363663); if (simpleDraweeView != null) { i = 2131363664; ProgressBar progressBar = (ProgressBar) viewGroup.findViewById(2131363664); if (progressBar != null) { i = 2131363665; ImageView imageView2 = (ImageView) viewGroup.findViewById(2131363665); if (imageView2 != null) { i = 2131363666; PlayerView playerView = (PlayerView) viewGroup.findViewById(2131363666); if (playerView != null) { i = 2131363667; ImageView imageView3 = (ImageView) viewGroup.findViewById(2131363667); if (imageView3 != null) { return new InlineMediaViewBinding(viewGroup, imageView, simpleDraweeView, progressBar, imageView2, playerView, imageView3); } } } } } } throw new NullPointerException("Missing required view with ID: ".concat(viewGroup.getResources().getResourceName(i))); } @Override // androidx.viewbinding.ViewBinding @NonNull public View getRoot() { return this.a; } }