shithub: openh264

ref: cc92c7db21c36e2e3ce9dd62c219f9d2e2a2b9c1
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__