package com.facebook.imagepipeline.animated.base;

import android.graphics.Bitmap;
/* loaded from: classes2.dex */
public interface AnimatedImageFrame {
    void dispose();

    int getDurationMs();

    int getHeight();

    int getWidth();

    int getXOffset();

    int getYOffset();

    void renderFrame(int width, int height, Bitmap bitmap);
}
