shithub: openh264

ref: 0d1deb578e418f5935f9f3e28a7068e3e245857e
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__