shithub: openh264

ref: 703c69de8164e28212c2df1745e1b4a6dd76fd09
dir: /test/utils/InputStream.h/

View raw version
#ifndef __INPUTSTREAM_H__
#define __INPUTSTREAM_H__

#include <cstddef>

struct InputStream {
  virtual int read(void* ptr, size_t len) = 0;
};

#endif //__INPUTSTREAM_H__