Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of uvchost by
uvc/myjpeg.h
- Committer:
- va009039
- Date:
- 2012-07-31
- Revision:
- 0:b0f04c137829
File content as of revision 0:b0f04c137829:
#ifndef MYJPEG_H #define MYJPEG_H class myjpeg { public: myjpeg(uint8_t* buf, int len, int capacity); void analytics(); int insertDHT(); int SOS_pos; int DHT_pos; private: int getc(); int getBE16(); uint8_t* m_buf; int m_len; int m_pos; int m_capacity; }; void QcamCopy(const char* destination, const char* source); #endif //MYJPEG_H