UVC host library

Dependents:   LifeCam WebcamServer

Committer:
va009039
Date:
Wed Aug 15 13:52:53 2012 +0000
Revision:
3:3eb41d749f9a
Parent:
0:b0f04c137829
add USB_USE_MALLOC

Who changed what in which revision?

UserRevisionLine numberNew contents of line
va009039 0:b0f04c137829 1 #ifndef MYJPEG_H
va009039 0:b0f04c137829 2 #define MYJPEG_H
va009039 0:b0f04c137829 3 class myjpeg {
va009039 0:b0f04c137829 4 public:
va009039 0:b0f04c137829 5 myjpeg(uint8_t* buf, int len, int capacity);
va009039 0:b0f04c137829 6 void analytics();
va009039 0:b0f04c137829 7 int insertDHT();
va009039 0:b0f04c137829 8 int SOS_pos;
va009039 0:b0f04c137829 9 int DHT_pos;
va009039 0:b0f04c137829 10 private:
va009039 0:b0f04c137829 11 int getc();
va009039 0:b0f04c137829 12 int getBE16();
va009039 0:b0f04c137829 13 uint8_t* m_buf;
va009039 0:b0f04c137829 14 int m_len;
va009039 0:b0f04c137829 15 int m_pos;
va009039 0:b0f04c137829 16 int m_capacity;
va009039 0:b0f04c137829 17 };
va009039 0:b0f04c137829 18
va009039 0:b0f04c137829 19 void QcamCopy(const char* destination, const char* source);
va009039 0:b0f04c137829 20
va009039 0:b0f04c137829 21 #endif //MYJPEG_H