pwc-uncompress.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:5k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /* Linux driver for Philips webcam 
  2.    Decompression frontend.
  3.    (C) 1999-2001 Nemosoft Unv. (webcam@smcc.demon.nl)
  4.    This program is free software; you can redistribute it and/or modify
  5.    it under the terms of the GNU General Public License as published by
  6.    the Free Software Foundation; either version 2 of the License, or
  7.    (at your option) any later version.
  8.    This program is distributed in the hope that it will be useful,
  9.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  11.    GNU General Public License for more details.
  12.    You should have received a copy of the GNU General Public License
  13.    along with this program; if not, write to the Free Software
  14.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  15. */
  16. /*
  17.    This is where the decompression routines register and unregister 
  18.    themselves. It also has a decompressor wrapper function.
  19. */
  20. #include <asm/types.h>
  21. #include "pwc.h"
  22. #include "pwc-uncompress.h"
  23. /* This contains a list of all registered decompressors */
  24. static LIST_HEAD(pwc_decompressor_list);
  25. /* Should the pwc_decompress structure ever change, we increase the 
  26.    version number so that we don't get nasty surprises, or can 
  27.    dynamicly adjust our structure.
  28.  */
  29. const int pwc_decompressor_version = PWC_MAJOR;
  30. /* Add decompressor to list, ignoring duplicates */
  31. void pwc_register_decompressor(struct pwc_decompressor *pwcd)
  32. {
  33. if (pwc_find_decompressor(pwcd->type) == NULL) {
  34. Trace(TRACE_PWCX, "Adding decompressor for model %d.n", pwcd->type);
  35. list_add_tail(&pwcd->pwcd_list, &pwc_decompressor_list);
  36. }
  37. }
  38. /* Remove decompressor from list */
  39. void pwc_unregister_decompressor(int type)
  40. {
  41. struct pwc_decompressor *find;
  42. find = pwc_find_decompressor(type);
  43. if (find != NULL) {
  44. Trace(TRACE_PWCX, "Removing decompressor for model %d.n", type);
  45. list_del(&find->pwcd_list);
  46. }
  47. }
  48. /* Find decompressor in list */
  49. struct pwc_decompressor *pwc_find_decompressor(int type)
  50. {
  51. struct list_head *tmp;
  52. struct pwc_decompressor *pwcd;
  53. list_for_each(tmp, &pwc_decompressor_list) {
  54. pwcd  = list_entry(tmp, struct pwc_decompressor, pwcd_list);
  55. if (pwcd->type == type)
  56. return pwcd;
  57. }
  58. return NULL;
  59. }
  60. int pwc_decompress(struct pwc_device *pdev)
  61. {
  62. struct pwc_frame_buf *fbuf;
  63. int n, line, col, stride;
  64. void *yuv, *image, *dst;
  65. u16 *src;
  66. u16 *dsty, *dstu, *dstv;
  67. if (pdev == NULL)
  68. return -EFAULT;
  69. #if defined(__KERNEL__) && defined(PWC_MAGIC)
  70. if (pdev->magic != PWC_MAGIC) {
  71. Err("pwc_decompress(): magic failed.n");
  72. return -EFAULT;
  73. }
  74. #endif
  75. fbuf = pdev->read_frame;
  76. if (fbuf == NULL)
  77. return -EFAULT;
  78. image = pdev->image_ptr[pdev->fill_image];
  79. if (!image)
  80. return -EFAULT;
  81. #if PWC_DEBUG
  82. /* This is a quickie */
  83. if (pdev->vpalette == VIDEO_PALETTE_RAW) {
  84. memcpy(image, fbuf->data, pdev->frame_size);
  85. return 0;
  86. }
  87. #endif
  88. yuv = fbuf->data + pdev->frame_header_size;  /* Skip header */
  89. if (pdev->vbandlength == 0) { 
  90. /* Uncompressed mode. We copy the data into the output buffer,
  91.    using the viewport size (which may be larger than the image
  92.    size). Unfortunately we have to do a bit of byte stuffing
  93.    to get the desired output format/size.
  94.  */
  95. switch (pdev->vpalette) {
  96. case VIDEO_PALETTE_YUV420:
  97. /* Calculate byte offsets per line in image & view */
  98. n   = (pdev->image.x * 3) / 2;
  99. col = (pdev->view.x  * 3) / 2;
  100. /* Offset into image */
  101. dst = image + (pdev->view.x * pdev->offset.y + pdev->offset.x) * 3 / 2;
  102. for (line = 0; line < pdev->image.y; line++) {
  103. memcpy(dst, yuv, n);
  104. yuv += n;
  105. dst += col;
  106. }
  107. break;
  108. case VIDEO_PALETTE_YUV420P:
  109. /* 
  110.  * We do some byte shuffling here to go from the 
  111.  * native format to YUV420P.
  112.  */
  113. src = (u16 *)yuv;
  114. n = pdev->view.x * pdev->view.y;
  115. /* offset in Y plane */
  116. stride = pdev->view.x * pdev->offset.y + pdev->offset.x;
  117. dsty = (u16 *)(image + stride);
  118. /* offsets in U/V planes */
  119. stride = pdev->view.x * pdev->offset.y / 4 + pdev->offset.x / 2;
  120. dstu = (u16 *)(image + n +         stride);
  121. dstv = (u16 *)(image + n + n / 4 + stride);
  122. /* increment after each line */
  123. stride = (pdev->view.x - pdev->image.x) / 2; /* u16 is 2 bytes */
  124. for (line = 0; line < pdev->image.y; line++) {
  125. for (col = 0; col < pdev->image.x; col += 4) {
  126. *dsty++ = *src++;
  127. *dsty++ = *src++;
  128. if (line & 1)
  129. *dstv++ = *src++;
  130. else
  131. *dstu++ = *src++;
  132. }
  133. dsty += stride;
  134. if (line & 1)
  135. dstv += (stride >> 1);
  136. else
  137. dstu += (stride >> 1);
  138. }
  139. break;
  140. }
  141. }
  142. else { 
  143. /* Compressed; the decompressor routines will write the data 
  144.    in interlaced or planar format immediately.
  145.  */
  146. if (pdev->decompressor)
  147. pdev->decompressor->decompress(
  148. &pdev->image, &pdev->view, &pdev->offset,
  149. yuv, image, 
  150. pdev->vpalette == VIDEO_PALETTE_YUV420P ? 1 : 0,
  151. pdev->decompress_data, pdev->vbandlength);
  152. else
  153. return -ENXIO; /* No such device or address: missing decompressor */
  154. }
  155. return 0;
  156. }
  157. /* Make sure these functions are available for the decompressor plugin
  158.    both when this code is compiled into the kernel or as as module.
  159.  */
  160. EXPORT_SYMBOL_NOVERS(pwc_decompressor_version);
  161. EXPORT_SYMBOL(pwc_register_decompressor);
  162. EXPORT_SYMBOL(pwc_unregister_decompressor);