~ubuntu-branches/debian/sid/v4l-utils/sid

« back to all changes in this revision

Viewing changes to lib/libv4lconvert/libv4lconvert-priv.h

  • Committer: Package Import Robot
  • Author(s): Gregor Jasny
  • Date: 2012-04-14 19:42:06 UTC
  • mfrom: (1.1.10)
  • Revision ID: package-import@ubuntu.com-20120414194206-nmgagyd9wc5dz0br
Tags: 0.8.8-1
* Imported Upstream version 0.8.8
  - Revert Lenovo X201 upside down table entry (Closes: #667958)
  - libv4lconvert: Use bytesperline instead of width
  - libv4lconver: Add 06f8:301b pac7302 based cam to the quirk table
  - tinyjpeg: Better luminance quantization table for Pixart JPEG
  - tinyjpeg: Fix out of bounds array usage
* Add DVB tools package

Show diffs side-by-side

added added

removed removed

Lines of Context:
234
234
                int width, int height);
235
235
 
236
236
void v4lconvert_bayer_to_rgb24(const unsigned char *bayer,
237
 
                unsigned char *rgb, int width, int height, unsigned int pixfmt);
 
237
                unsigned char *rgb, int width, int height, const unsigned int stride, unsigned int pixfmt);
238
238
 
239
239
void v4lconvert_bayer_to_bgr24(const unsigned char *bayer,
240
 
                unsigned char *rgb, int width, int height, unsigned int pixfmt);
 
240
                unsigned char *rgb, int width, int height, const unsigned int stride, unsigned int pixfmt);
241
241
 
242
242
void v4lconvert_bayer_to_yuv420(const unsigned char *bayer, unsigned char *yuv,
243
 
                int width, int height, unsigned int src_pixfmt, int yvu);
 
243
                int width, int height, const unsigned int stride, unsigned int src_pixfmt, int yvu);
244
244
 
245
245
void v4lconvert_hm12_to_rgb24(const unsigned char *src,
246
246
                unsigned char *dst, int width, int height);