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.
Dependencies: FatFileSystem TB6612FNG2 mbed
uvc/myjpeg.h@0:de03cbbcd0ff, 2015-11-30 (annotated)
- Committer:
- mbed_Cookbook_SE
- Date:
- Mon Nov 30 09:32:15 2015 +0000
- Revision:
- 0:de03cbbcd0ff
??
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| mbed_Cookbook_SE | 0:de03cbbcd0ff | 1 | #ifndef MYJPEG_H |
| mbed_Cookbook_SE | 0:de03cbbcd0ff | 2 | #define MYJPEG_H |
| mbed_Cookbook_SE | 0:de03cbbcd0ff | 3 | class myjpeg { |
| mbed_Cookbook_SE | 0:de03cbbcd0ff | 4 | public: |
| mbed_Cookbook_SE | 0:de03cbbcd0ff | 5 | myjpeg(uint8_t* buf, int len, int capacity); |
| mbed_Cookbook_SE | 0:de03cbbcd0ff | 6 | void analytics(); |
| mbed_Cookbook_SE | 0:de03cbbcd0ff | 7 | int insertDHT(); |
| mbed_Cookbook_SE | 0:de03cbbcd0ff | 8 | int SOS_pos; |
| mbed_Cookbook_SE | 0:de03cbbcd0ff | 9 | int DHT_pos; |
| mbed_Cookbook_SE | 0:de03cbbcd0ff | 10 | private: |
| mbed_Cookbook_SE | 0:de03cbbcd0ff | 11 | int getc(); |
| mbed_Cookbook_SE | 0:de03cbbcd0ff | 12 | int getBE16(); |
| mbed_Cookbook_SE | 0:de03cbbcd0ff | 13 | uint8_t* m_buf; |
| mbed_Cookbook_SE | 0:de03cbbcd0ff | 14 | int m_len; |
| mbed_Cookbook_SE | 0:de03cbbcd0ff | 15 | int m_pos; |
| mbed_Cookbook_SE | 0:de03cbbcd0ff | 16 | int m_capacity; |
| mbed_Cookbook_SE | 0:de03cbbcd0ff | 17 | }; |
| mbed_Cookbook_SE | 0:de03cbbcd0ff | 18 | |
| mbed_Cookbook_SE | 0:de03cbbcd0ff | 19 | void QcamCopy(const char* destination, const char* source); |
| mbed_Cookbook_SE | 0:de03cbbcd0ff | 20 | |
| mbed_Cookbook_SE | 0:de03cbbcd0ff | 21 | #endif //MYJPEG_H |