shithub: openh264

ref: 4cdee3b2d1f1ae34cb9c4f31baf890c0f0e941a2
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__