/*
 * Copyright 2019 LinkedIn Corporation
 * All Rights Reserved.
 *
 * Licensed under the BSD 2-Clause License (the "License").  See License in the project root for
 * license information.
 */
package com.reactnativecompressor.Data;

import androidx.annotation.NonNull;

public class GenericTrackFormat extends MediaTrackFormat {

    public GenericTrackFormat(int index, @NonNull String mimeType) {
        super(index, mimeType);
    }
}
