shithub: openh264

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