ov511.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:18k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. #ifndef __LINUX_OV511_H
  2. #define __LINUX_OV511_H
  3. #include <asm/uaccess.h>
  4. #include <linux/videodev.h>
  5. #include <linux/smp_lock.h>
  6. #include <linux/usb.h>
  7. #define OV511_DEBUG /* Turn on debug messages */
  8. #ifdef OV511_DEBUG
  9. #define PDEBUG(level, fmt, args...) 
  10. if (debug >= (level)) info("[%s:%d] " fmt, 
  11. __PRETTY_FUNCTION__, __LINE__ , ## args)
  12. #else
  13. #define PDEBUG(level, fmt, args...) do {} while(0)
  14. #endif
  15. /* This macro restricts an int variable to an inclusive range */
  16. #define RESTRICT_TO_RANGE(v,mi,ma) { 
  17. if ((v) < (mi)) (v) = (mi); 
  18. else if ((v) > (ma)) (v) = (ma); 
  19. }
  20. /* --------------------------------- */
  21. /* DEFINES FOR OV511 AND OTHER CHIPS */
  22. /* --------------------------------- */
  23. /* USB IDs */
  24. #define VEND_OMNIVISION 0x05A9
  25. #define PROD_OV511 0x0511
  26. #define PROD_OV511PLUS 0xA511
  27. #define PROD_OV518 0x0518
  28. #define PROD_OV518PLUS 0xA518
  29. #define VEND_MATTEL 0x0813
  30. #define PROD_ME2CAM 0x0002
  31. /* --------------------------------- */
  32. /*     OV51x REGISTER MNEMONICS      */
  33. /* --------------------------------- */
  34. /* Camera interface register numbers */
  35. #define R511_CAM_DELAY 0x10
  36. #define R511_CAM_EDGE 0x11
  37. #define R511_CAM_PXCNT 0x12
  38. #define R511_CAM_LNCNT 0x13
  39. #define R511_CAM_PXDIV 0x14
  40. #define R511_CAM_LNDIV 0x15
  41. #define R511_CAM_UV_EN 0x16
  42. #define R511_CAM_LINE_MODE 0x17
  43. #define R511_CAM_OPTS 0x18
  44. /* Snapshot mode camera interface register numbers */
  45. #define R511_SNAP_FRAME 0x19
  46. #define R511_SNAP_PXCNT 0x1A
  47. #define R511_SNAP_LNCNT 0x1B
  48. #define R511_SNAP_PXDIV 0x1C
  49. #define R511_SNAP_LNDIV 0x1D
  50. #define R511_SNAP_UV_EN 0x1E
  51. #define R511_SNAP_OPTS 0x1F
  52. /* DRAM register numbers */
  53. #define R511_DRAM_FLOW_CTL 0x20
  54. #define R511_DRAM_ARCP 0x21
  55. #define R511_DRAM_MRC 0x22
  56. #define R511_DRAM_RFC 0x23
  57. /* ISO FIFO register numbers */
  58. #define R51x_FIFO_PSIZE 0x30 /* 2 bytes wide w/ OV518(+) */
  59. #define R511_FIFO_OPTS 0x31
  60. /* Parallel IO register numbers */
  61. #define R511_PIO_OPTS 0x38
  62. #define R511_PIO_DATA 0x39
  63. #define R511_PIO_BIST 0x3E
  64. #define R518_GPIO_IN 0x55 /* OV518(+) only */
  65. #define R518_GPIO_OUT 0x56 /* OV518(+) only */
  66. #define R518_GPIO_CTL 0x57 /* OV518(+) only */
  67. #define R518_GPIO_PULSE_IN 0x58 /* OV518(+) only */
  68. #define R518_GPIO_PULSE_CLEAR 0x59 /* OV518(+) only */
  69. #define R518_GPIO_PULSE_POL 0x5a /* OV518(+) only */
  70. #define R518_GPIO_PULSE_EN 0x5b /* OV518(+) only */
  71. #define R518_GPIO_RESET 0x5c /* OV518(+) only */
  72. /* I2C registers */
  73. #define R511_I2C_CTL 0x40
  74. #define R518_I2C_CTL 0x47 /* OV518(+) only */
  75. #define R51x_I2C_W_SID 0x41
  76. #define R51x_I2C_SADDR_3 0x42
  77. #define R51x_I2C_SADDR_2 0x43
  78. #define R51x_I2C_R_SID 0x44
  79. #define R51x_I2C_DATA 0x45
  80. #define R51x_I2C_CLOCK 0x46
  81. #define R51x_I2C_TIMEOUT 0x47
  82. /* I2C snapshot registers */
  83. #define R511_SI2C_SADDR_3 0x48
  84. #define R511_SI2C_DATA 0x49
  85. /* System control registers */
  86. #define R51x_SYS_RESET 0x50
  87. /* Reset type definitions */
  88. #define  OV511_RESET_UDC 0x01
  89. #define  OV511_RESET_I2C 0x02
  90. #define  OV511_RESET_FIFO 0x04
  91. #define  OV511_RESET_OMNICE 0x08
  92. #define  OV511_RESET_DRAM 0x10
  93. #define  OV511_RESET_CAM_INT 0x20
  94. #define  OV511_RESET_OV511 0x40
  95. #define  OV511_RESET_NOREGS 0x3F /* All but OV511 & regs */
  96. #define  OV511_RESET_ALL 0x7F
  97. #define R511_SYS_CLOCK_DIV 0x51
  98. #define R51x_SYS_SNAP 0x52
  99. #define R51x_SYS_INIT          0x53
  100. #define R511_SYS_PWR_CLK 0x54 /* OV511+/OV518(+) only */
  101. #define R511_SYS_LED_CTL 0x55 /* OV511+ only */
  102. #define R511_SYS_USER 0x5E
  103. #define R511_SYS_CUST_ID 0x5F
  104. /* OmniCE (compression) registers */
  105. #define R511_COMP_PHY 0x70
  106. #define R511_COMP_PHUV 0x71
  107. #define R511_COMP_PVY 0x72
  108. #define R511_COMP_PVUV 0x73
  109. #define R511_COMP_QHY 0x74
  110. #define R511_COMP_QHUV 0x75
  111. #define R511_COMP_QVY 0x76
  112. #define R511_COMP_QVUV 0x77
  113. #define R511_COMP_EN 0x78
  114. #define R511_COMP_LUT_EN 0x79
  115. #define R511_COMP_LUT_BEGIN 0x80
  116. /* --------------------------------- */
  117. /*         ALTERNATE NUMBERS         */
  118. /* --------------------------------- */
  119. /* Alternate numbers for various max packet sizes (OV511 only) */
  120. #define OV511_ALT_SIZE_992 0
  121. #define OV511_ALT_SIZE_993 1
  122. #define OV511_ALT_SIZE_768 2
  123. #define OV511_ALT_SIZE_769 3
  124. #define OV511_ALT_SIZE_512 4
  125. #define OV511_ALT_SIZE_513 5
  126. #define OV511_ALT_SIZE_257 6
  127. #define OV511_ALT_SIZE_0 7
  128. /* Alternate numbers for various max packet sizes (OV511+ only) */
  129. #define OV511PLUS_ALT_SIZE_0 0
  130. #define OV511PLUS_ALT_SIZE_33 1
  131. #define OV511PLUS_ALT_SIZE_129 2
  132. #define OV511PLUS_ALT_SIZE_257 3
  133. #define OV511PLUS_ALT_SIZE_385 4
  134. #define OV511PLUS_ALT_SIZE_513 5
  135. #define OV511PLUS_ALT_SIZE_769 6
  136. #define OV511PLUS_ALT_SIZE_961 7
  137. /* Alternate numbers for various max packet sizes (OV518(+) only) */
  138. #define OV518_ALT_SIZE_0 0
  139. #define OV518_ALT_SIZE_128 1
  140. #define OV518_ALT_SIZE_256 2
  141. #define OV518_ALT_SIZE_384 3
  142. #define OV518_ALT_SIZE_512 4
  143. #define OV518_ALT_SIZE_640 5
  144. #define OV518_ALT_SIZE_768 6
  145. #define OV518_ALT_SIZE_896 7
  146. /* --------------------------------- */
  147. /*     OV7610 REGISTER MNEMONICS     */
  148. /* --------------------------------- */
  149. /* OV7610 registers */
  150. #define OV7610_REG_GAIN          0x00 /* gain setting (5:0) */
  151. #define OV7610_REG_BLUE          0x01 /* blue channel balance */
  152. #define OV7610_REG_RED           0x02 /* red channel balance */
  153. #define OV7610_REG_SAT           0x03 /* saturation */
  154. /* 04 reserved */
  155. #define OV7610_REG_CNT           0x05 /* Y contrast */
  156. #define OV7610_REG_BRT           0x06 /* Y brightness */
  157. /* 08-0b reserved */
  158. #define OV7610_REG_BLUE_BIAS     0x0C /* blue channel bias (5:0) */
  159. #define OV7610_REG_RED_BIAS      0x0D /* read channel bias (5:0) */
  160. #define OV7610_REG_GAMMA_COEFF   0x0E /* gamma settings */
  161. #define OV7610_REG_WB_RANGE      0x0F /* AEC/ALC/S-AWB settings */
  162. #define OV7610_REG_EXP           0x10 /* manual exposure setting */
  163. #define OV7610_REG_CLOCK         0x11 /* polarity/clock prescaler */
  164. #define OV7610_REG_COM_A         0x12 /* misc common regs */
  165. #define OV7610_REG_COM_B         0x13 /* misc common regs */
  166. #define OV7610_REG_COM_C         0x14 /* misc common regs */
  167. #define OV7610_REG_COM_D         0x15 /* misc common regs */
  168. #define OV7610_REG_FIELD_DIVIDE  0x16 /* field interval/mode settings */
  169. #define OV7610_REG_HWIN_START    0x17 /* horizontal window start */
  170. #define OV7610_REG_HWIN_END      0x18 /* horizontal window end */
  171. #define OV7610_REG_VWIN_START    0x19 /* vertical window start */
  172. #define OV7610_REG_VWIN_END      0x1A /* vertical window end */
  173. #define OV7610_REG_PIXEL_SHIFT   0x1B /* pixel shift */
  174. #define OV7610_REG_ID_HIGH       0x1C /* manufacturer ID MSB */
  175. #define OV7610_REG_ID_LOW        0x1D /* manufacturer ID LSB */
  176. /* 0e-0f reserved */
  177. #define OV7610_REG_COM_E         0x20 /* misc common regs */
  178. #define OV7610_REG_YOFFSET       0x21 /* Y channel offset */
  179. #define OV7610_REG_UOFFSET       0x22 /* U channel offset */
  180. /* 23 reserved */
  181. #define OV7610_REG_ECW           0x24 /* Exposure white level for AEC */
  182. #define OV7610_REG_ECB           0x25 /* Exposure black level for AEC */
  183. #define OV7610_REG_COM_F         0x26 /* misc settings */
  184. #define OV7610_REG_COM_G         0x27 /* misc settings */
  185. #define OV7610_REG_COM_H         0x28 /* misc settings */
  186. #define OV7610_REG_COM_I         0x29 /* misc settings */
  187. #define OV7610_REG_FRAMERATE_H   0x2A /* frame rate MSB + misc */
  188. #define OV7610_REG_FRAMERATE_L   0x2B /* frame rate LSB */
  189. #define OV7610_REG_ALC           0x2C /* Auto Level Control settings */
  190. #define OV7610_REG_COM_J         0x2D /* misc settings */
  191. #define OV7610_REG_VOFFSET       0x2E /* V channel offset adjustment */
  192. #define OV7610_REG_ARRAY_BIAS  0x2F /* Array bias -- don't change */
  193. /* 30-32 reserved */
  194. #define OV7610_REG_YGAMMA        0x33 /* misc gamma settings (7:6) */
  195. #define OV7610_REG_BIAS_ADJUST   0x34 /* misc bias settings */
  196. #define OV7610_REG_COM_L         0x35 /* misc settings */
  197. /* 36-37 reserved */
  198. #define OV7610_REG_COM_K         0x38 /* misc registers */
  199. /* --------------------------------- */
  200. /*           I2C ADDRESSES           */
  201. /* --------------------------------- */
  202. #define OV7xx0_SID   0x42
  203. #define OV6xx0_SID   0xC0
  204. #define OV8xx0_SID   0xA0
  205. #define KS0127_SID   0xD8
  206. #define SAA7111A_SID 0x48
  207. /* --------------------------------- */
  208. /*       MISCELLANEOUS DEFINES       */
  209. /* --------------------------------- */
  210. #define I2C_CLOCK_PRESCALER  0x03
  211. #define FRAMES_PER_DESC 10 /* FIXME - What should this be? */
  212. #define MAX_FRAME_SIZE_PER_DESC 993 /* For statically allocated stuff */
  213. #define PIXELS_PER_SEG 256 /* Pixels per segment */
  214. #define OV511_ENDPOINT_ADDRESS 1 /* Isoc endpoint number */
  215. #define OV511_NUMFRAMES 2
  216. #if OV511_NUMFRAMES > VIDEO_MAX_FRAME
  217. #error "OV511_NUMFRAMES is too high"
  218. #endif
  219. #define OV511_NUMSBUF 2
  220. /* Control transfers use up to 4 bytes */
  221. #define OV511_CBUF_SIZE 4
  222. /* Bridge types */
  223. enum {
  224. BRG_UNKNOWN,
  225. BRG_OV511,
  226. BRG_OV511PLUS,
  227. BRG_OV518,
  228. BRG_OV518PLUS,
  229. };
  230. /* Bridge classes */
  231. enum {
  232. BCL_UNKNOWN,
  233. BCL_OV511,
  234. BCL_OV518,
  235. };
  236. /* Sensor types */
  237. enum {
  238. SEN_UNKNOWN,
  239. SEN_OV76BE,
  240. SEN_OV7610,
  241. SEN_OV7620,
  242. SEN_OV7620AE,
  243. SEN_OV6620,
  244. SEN_OV6630,
  245. SEN_OV6630AE,
  246. SEN_OV6630AF,
  247. SEN_OV8600,
  248. SEN_KS0127,
  249. SEN_KS0127B,
  250. SEN_SAA7111A,
  251. };
  252. // Not implemented yet
  253. #if 0
  254. /* Sensor classes */
  255. enum {
  256. SCL_UNKNOWN,
  257. SCL_OV7610, /* 7610, 76BE, 7620AE (for now) */
  258. SCL_OV7620,
  259. SCL_OV6620,
  260. SCL_OV6630, /* 6630, 6630AE, 6630AF */
  261. SCL_OV8600,
  262. SCL_KS0127, /* SEN_KS0127, SEN_KS0127B */
  263. SCL_SAA7111A,
  264. };
  265. #endif
  266. enum {
  267. STATE_SCANNING, /* Scanning for start */
  268. STATE_HEADER, /* Parsing header */
  269. STATE_LINES, /* Parsing lines */
  270. };
  271. /* Buffer states */
  272. enum {
  273. BUF_NOT_ALLOCATED,
  274. BUF_ALLOCATED,
  275. BUF_PEND_DEALLOC, /* ov511->buf_timer is set */
  276. };
  277. /* --------- Definition of ioctl interface --------- */
  278. #define OV511_INTERFACE_VER 101
  279. /* LED options */
  280. enum {
  281. LED_OFF,
  282. LED_ON,
  283. LED_AUTO,
  284. };
  285. /* Raw frame formats */
  286. enum {
  287. RAWFMT_INVALID,
  288. RAWFMT_YUV400,
  289. RAWFMT_YUV420,
  290. RAWFMT_YUV422,
  291. RAWFMT_GBR422,
  292. };
  293. /* Unsigned short option numbers */
  294. enum {
  295. OV511_USOPT_INVALID,
  296. OV511_USOPT_BRIGHT,
  297. OV511_USOPT_SAT,
  298. OV511_USOPT_HUE,
  299. OV511_USOPT_CONTRAST,
  300. };
  301. /* Unsigned int option numbers */
  302. enum {
  303. OV511_UIOPT_INVALID,
  304. OV511_UIOPT_POWER_FREQ,
  305. OV511_UIOPT_BFILTER,
  306. OV511_UIOPT_LED,
  307. OV511_UIOPT_DEBUG,
  308. OV511_UIOPT_COMPRESS,
  309. };
  310. struct ov511_ushort_opt {
  311. int optnum; /* Specific option number */
  312. unsigned short val;
  313. };
  314. struct ov511_uint_opt {
  315. int optnum; /* Specific option number */
  316. unsigned int val;
  317. };
  318. struct ov511_i2c_struct {
  319. unsigned char slave; /* Write slave ID (read ID - 1) */
  320. unsigned char reg;   /* Index of register */
  321. unsigned char value; /* User sets this w/ write, driver does w/ read */
  322. unsigned char mask;  /* Bits to be changed. Not used with read ops */
  323. };
  324. /* ioctls */
  325. #define OV511IOC_GINTVER  _IOR('v', BASE_VIDIOCPRIVATE + 0, int)
  326. #define OV511IOC_GUSHORT _IOWR('v', BASE_VIDIOCPRIVATE + 1, 
  327.        struct ov511_ushort_opt)
  328. #define OV511IOC_SUSHORT  _IOW('v', BASE_VIDIOCPRIVATE + 2, 
  329.        struct ov511_ushort_opt)
  330. #define OV511IOC_GUINT   _IOWR('v', BASE_VIDIOCPRIVATE + 3, 
  331.        struct ov511_uint_opt)
  332. #define OV511IOC_SUINT    _IOW('v', BASE_VIDIOCPRIVATE + 4, 
  333.        struct ov511_uint_opt)
  334. #define OV511IOC_WI2C     _IOW('v', BASE_VIDIOCPRIVATE + 5, 
  335.        struct ov511_i2c_struct)
  336. #define OV511IOC_RI2C    _IOWR('v', BASE_VIDIOCPRIVATE + 6, 
  337.        struct ov511_i2c_struct)
  338. /* ------------- End IOCTL interface -------------- */
  339. struct usb_ov511; /* Forward declaration */
  340. struct ov511_sbuf {
  341. struct usb_ov511 *ov;
  342. unsigned char *data;
  343. struct urb *urb;
  344. spinlock_t lock;
  345. int n;
  346. };
  347. enum {
  348. FRAME_UNUSED, /* Unused (no MCAPTURE) */
  349. FRAME_READY, /* Ready to start grabbing */
  350. FRAME_GRABBING, /* In the process of being grabbed into */
  351. FRAME_DONE, /* Finished grabbing, but not been synced yet */
  352. FRAME_ERROR, /* Something bad happened while processing */
  353. };
  354. struct ov511_regvals {
  355. enum {
  356. OV511_DONE_BUS,
  357. OV511_REG_BUS,
  358. OV511_I2C_BUS,
  359. } bus;
  360. unsigned char reg;
  361. unsigned char val;
  362. };
  363. struct ov511_frame {
  364. int framenum; /* Index of this frame */
  365. unsigned char *data; /* Frame buffer */
  366. unsigned char *tempdata; /* Temp buffer for multi-stage conversions */
  367. unsigned char *rawdata; /* Raw camera data buffer */
  368. unsigned char *compbuf; /* Temp buffer for decompressor */
  369. int depth; /* Bytes per pixel */
  370. int width; /* Width application is expecting */
  371. int height; /* Height application is expecting */
  372. int rawwidth; /* Actual width of frame sent from camera */
  373. int rawheight; /* Actual height of frame sent from camera */
  374. int sub_flag; /* Sub-capture mode for this frame? */
  375. unsigned int format; /* Format for this frame */
  376. int compressed; /* Is frame compressed? */
  377. volatile int grabstate; /* State of grabbing */
  378. int scanstate; /* State of scanning */
  379. int bytes_recvd; /* Number of image bytes received from camera */
  380. long bytes_read; /* Amount that has been read() */
  381. wait_queue_head_t wq; /* Processes waiting */
  382. int snapshot; /* True if frame was a snapshot */
  383. };
  384. #define DECOMP_INTERFACE_VER 4
  385. /* Compression module operations */
  386. struct ov51x_decomp_ops {
  387. int (*decomp_400)(unsigned char *, unsigned char *, unsigned char *,
  388.   int, int, int);
  389. int (*decomp_420)(unsigned char *, unsigned char *, unsigned char *,
  390.   int, int, int);
  391. int (*decomp_422)(unsigned char *, unsigned char *, unsigned char *,
  392.   int, int, int);
  393. struct module *owner;
  394. };
  395. struct usb_ov511 {
  396. struct video_device vdev;
  397. /* Device structure */
  398. struct usb_device *dev;
  399. int customid;
  400. char *desc;
  401. unsigned char iface;
  402. /* Determined by sensor type */
  403. int maxwidth;
  404. int maxheight;
  405. int minwidth;
  406. int minheight;
  407. int brightness;
  408. int colour;
  409. int contrast;
  410. int hue;
  411. int whiteness;
  412. int exposure;
  413. int auto_brt; /* Auto brightness enabled flag */
  414. int auto_gain; /* Auto gain control enabled flag */
  415. int auto_exp; /* Auto exposure enabled flag */
  416. int backlight; /* Backlight exposure algorithm flag */
  417. int mirror; /* Image is reversed horizontally */
  418. int led_policy; /* LED: off|on|auto; OV511+ only */
  419. struct semaphore lock; /* Serializes user-accessible operations */
  420. int user; /* user count for exclusive use */
  421. int streaming; /* Are we streaming Isochronous? */
  422. int grabbing; /* Are we grabbing? */
  423. int compress; /* Should the next frame be compressed? */
  424. int compress_inited; /* Are compression params uploaded? */
  425. int lightfreq; /* Power (lighting) frequency */
  426. int bandfilt; /* Banding filter enabled flag */
  427. unsigned char *fbuf; /* Videodev buffer area */
  428. unsigned char *tempfbuf; /* Temporary (intermediate) buffer area */
  429. unsigned char *rawfbuf; /* Raw camera data buffer area */
  430. int sub_flag; /* Pix Array subcapture on flag */
  431. int subx; /* Pix Array subcapture x offset */
  432. int suby; /* Pix Array subcapture y offset */
  433. int subw; /* Pix Array subcapture width */
  434. int subh; /* Pix Array subcapture height */
  435. int curframe; /* Current receiving sbuf */
  436. struct ov511_frame frame[OV511_NUMFRAMES];
  437. struct ov511_sbuf sbuf[OV511_NUMSBUF];
  438. wait_queue_head_t wq; /* Processes waiting */
  439. int snap_enabled; /* Snapshot mode enabled */
  440. int bridge; /* Type of bridge (BRG_*) */
  441. int bclass; /* Class of bridge (BCL_*) */
  442. int sensor; /* Type of image sensor chip (SEN_*) */
  443. int sclass; /* Type of image sensor chip (SCL_*) */
  444. int packet_size; /* Frame size per isoc desc */
  445. int packet_numbering; /* Is ISO frame numbering enabled? */
  446. struct semaphore param_lock; /* params lock for this camera */
  447. /* /proc entries, relative to /proc/video/ov511/ */
  448. struct proc_dir_entry *proc_devdir;   /* Per-device proc directory */
  449. struct proc_dir_entry *proc_info;     /* <minor#>/info entry */
  450. struct proc_dir_entry *proc_button;   /* <minor#>/button entry */
  451. struct proc_dir_entry *proc_control;  /* <minor#>/control entry */
  452. /* Framebuffer/sbuf management */
  453. int buf_state;
  454. struct semaphore buf_lock;
  455. struct timer_list buf_timer;
  456. struct ov51x_decomp_ops *decomp_ops;
  457. /* Stop streaming while changing picture settings */
  458. int stop_during_set;
  459. int stopped; /* Streaming is temporarily paused */
  460. /* Video decoder stuff */
  461. int input; /* Composite, S-VIDEO, etc... */
  462. int num_inputs; /* Number of inputs */
  463. int norm;  /* NTSC / PAL / SECAM */
  464. int has_decoder; /* Device has a video decoder */
  465. int pal; /* Device is designed for PAL resolution */
  466. /* I2C interface */
  467. struct semaphore i2c_lock;   /* Protect I2C controller regs */
  468. unsigned char primary_i2c_slave;  /* I2C write id of sensor */
  469. /* Control transaction stuff */
  470. unsigned char *cbuf; /* Buffer for payload */
  471. struct semaphore cbuf_lock;
  472. };
  473. /* Used to represent a list of values and their respective symbolic names */
  474. struct symbolic_list {
  475. int num;
  476. char *name;
  477. };
  478. #define NOT_DEFINED_STR "Unknown"
  479. /* Returns the name of the matching element in the symbolic_list array. The
  480.  * end of the list must be marked with an element that has a NULL name.
  481.  */
  482. static inline char * 
  483. symbolic(struct symbolic_list list[], int num)
  484. {
  485. int i;
  486. for (i = 0; list[i].name != NULL; i++)
  487. if (list[i].num == num)
  488. return (list[i].name);
  489. return (NOT_DEFINED_STR);
  490. }
  491. /* Compression stuff */
  492. #define OV511_QUANTABLESIZE 64
  493. #define OV518_QUANTABLESIZE 32
  494. #define OV511_YQUANTABLE { 
  495. 0, 1, 1, 2, 2, 3, 3, 4, 
  496. 1, 1, 1, 2, 2, 3, 4, 4, 
  497. 1, 1, 2, 2, 3, 4, 4, 4, 
  498. 2, 2, 2, 3, 4, 4, 4, 4, 
  499. 2, 2, 3, 4, 4, 5, 5, 5, 
  500. 3, 3, 4, 4, 5, 5, 5, 5, 
  501. 3, 4, 4, 4, 5, 5, 5, 5, 
  502. 4, 4, 4, 4, 5, 5, 5, 5  
  503. }
  504. #define OV511_UVQUANTABLE { 
  505. 0, 2, 2, 3, 4, 4, 4, 4, 
  506. 2, 2, 2, 4, 4, 4, 4, 4, 
  507. 2, 2, 3, 4, 4, 4, 4, 4, 
  508. 3, 4, 4, 4, 4, 4, 4, 4, 
  509. 4, 4, 4, 4, 4, 4, 4, 4, 
  510. 4, 4, 4, 4, 4, 4, 4, 4, 
  511. 4, 4, 4, 4, 4, 4, 4, 4, 
  512. 4, 4, 4, 4, 4, 4, 4, 4  
  513. }
  514. #define OV518_YQUANTABLE { 
  515. 5, 4, 5, 6, 6, 7, 7, 7, 
  516. 5, 5, 5, 5, 6, 7, 7, 7, 
  517. 6, 6, 6, 6, 7, 7, 7, 8, 
  518. 7, 7, 6, 7, 7, 7, 8, 8  
  519. }
  520. #define OV518_UVQUANTABLE { 
  521. 6, 6, 6, 7, 7, 7, 7, 7, 
  522. 6, 6, 6, 7, 7, 7, 7, 7, 
  523. 6, 6, 6, 7, 7, 7, 7, 8, 
  524. 7, 7, 7, 7, 7, 7, 8, 8  
  525. }
  526. #endif