001package net.bramp.ffmpeg.nut;
002
003public interface NutReaderListener {
004
005  /**
006   * Executes when a new stream is found.
007   *
008   * @param stream The stream
009   */
010  void stream(Stream stream);
011
012  /**
013   * Executes when a new frame is found.
014   *
015   * @param frame A single Frame
016   */
017  void frame(Frame frame);
018}