shithub: openh264

ref: 47df411b1a8c0bbc2007a3038f186f7d90f1c5df
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__