forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'v4l_for_linus' of git://git.kernel.org/pub/scm/linux/ke…
…rnel/git/mchehab/linux-2.6 * 'v4l_for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-2.6: (42 commits) [media] media: vb2: correct queue initialization order [media] media: vb2: fix incorrect v4l2_buffer->flags handling [media] s5p-fimc: Add support for the buffer timestamps and sequence [media] s5p-fimc: Fix bytesperline and plane payload setup [media] s5p-fimc: Do not allow changing format after REQBUFS [media] s5p-fimc: Fix FIMC3 pixel limits on Exynos4 [media] tda18271: update tda18271c2_rf_cal as per NXP's rev.04 datasheet [media] tda18271: update tda18271_rf_band as per NXP's rev.04 datasheet [media] tda18271: fix bad calculation of main post divider byte [media] tda18271: prog_cal and prog_tab variables should be s32, not u8 [media] tda18271: fix calculation bug in tda18271_rf_tracking_filters_init [media] omap3isp: queue: Don't corrupt buf->npages when get_user_pages() fails [media] v4l: Don't register media entities for subdev device nodes [media] omap3isp: Don't increment node entity use count when poweron fails [media] omap3isp: lane shifter support [media] omap3isp: ccdc: support Y10/12, 8-bit bayer fmts [media] media: add missing 8-bit bayer formats and Y12 [media] v4l: add V4L2_PIX_FMT_Y12 format cx23885: Fix stv0367 Kconfig dependency [media] omap3isp: Use isp xclk defines ... Fix up trivial conflict (spelink errurs) in drivers/media/video/omap3isp/isp.c
- Loading branch information
Showing
37 changed files
with
512 additions
and
152 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
<refentry id="V4L2-PIX-FMT-Y12"> | ||
<refmeta> | ||
<refentrytitle>V4L2_PIX_FMT_Y12 ('Y12 ')</refentrytitle> | ||
&manvol; | ||
</refmeta> | ||
<refnamediv> | ||
<refname><constant>V4L2_PIX_FMT_Y12</constant></refname> | ||
<refpurpose>Grey-scale image</refpurpose> | ||
</refnamediv> | ||
<refsect1> | ||
<title>Description</title> | ||
|
||
<para>This is a grey-scale image with a depth of 12 bits per pixel. Pixels | ||
are stored in 16-bit words with unused high bits padded with 0. The least | ||
significant byte is stored at lower memory addresses (little-endian).</para> | ||
|
||
<example> | ||
<title><constant>V4L2_PIX_FMT_Y12</constant> 4 × 4 | ||
pixel image</title> | ||
|
||
<formalpara> | ||
<title>Byte Order.</title> | ||
<para>Each cell is one byte. | ||
<informaltable frame="none"> | ||
<tgroup cols="9" align="center"> | ||
<colspec align="left" colwidth="2*" /> | ||
<tbody valign="top"> | ||
<row> | ||
<entry>start + 0:</entry> | ||
<entry>Y'<subscript>00low</subscript></entry> | ||
<entry>Y'<subscript>00high</subscript></entry> | ||
<entry>Y'<subscript>01low</subscript></entry> | ||
<entry>Y'<subscript>01high</subscript></entry> | ||
<entry>Y'<subscript>02low</subscript></entry> | ||
<entry>Y'<subscript>02high</subscript></entry> | ||
<entry>Y'<subscript>03low</subscript></entry> | ||
<entry>Y'<subscript>03high</subscript></entry> | ||
</row> | ||
<row> | ||
<entry>start + 8:</entry> | ||
<entry>Y'<subscript>10low</subscript></entry> | ||
<entry>Y'<subscript>10high</subscript></entry> | ||
<entry>Y'<subscript>11low</subscript></entry> | ||
<entry>Y'<subscript>11high</subscript></entry> | ||
<entry>Y'<subscript>12low</subscript></entry> | ||
<entry>Y'<subscript>12high</subscript></entry> | ||
<entry>Y'<subscript>13low</subscript></entry> | ||
<entry>Y'<subscript>13high</subscript></entry> | ||
</row> | ||
<row> | ||
<entry>start + 16:</entry> | ||
<entry>Y'<subscript>20low</subscript></entry> | ||
<entry>Y'<subscript>20high</subscript></entry> | ||
<entry>Y'<subscript>21low</subscript></entry> | ||
<entry>Y'<subscript>21high</subscript></entry> | ||
<entry>Y'<subscript>22low</subscript></entry> | ||
<entry>Y'<subscript>22high</subscript></entry> | ||
<entry>Y'<subscript>23low</subscript></entry> | ||
<entry>Y'<subscript>23high</subscript></entry> | ||
</row> | ||
<row> | ||
<entry>start + 24:</entry> | ||
<entry>Y'<subscript>30low</subscript></entry> | ||
<entry>Y'<subscript>30high</subscript></entry> | ||
<entry>Y'<subscript>31low</subscript></entry> | ||
<entry>Y'<subscript>31high</subscript></entry> | ||
<entry>Y'<subscript>32low</subscript></entry> | ||
<entry>Y'<subscript>32high</subscript></entry> | ||
<entry>Y'<subscript>33low</subscript></entry> | ||
<entry>Y'<subscript>33high</subscript></entry> | ||
</row> | ||
</tbody> | ||
</tgroup> | ||
</informaltable> | ||
</para> | ||
</formalpara> | ||
</example> | ||
</refsect1> | ||
</refentry> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,7 +38,7 @@ MODULE_PARM_DESC(debug, | |
DEBSTATUS); | ||
|
||
#define DRIVER_VERSION "0.1" | ||
#define DRIVER_NAME "Technisat/B2C2 FlexCop II/IIb/III Digital TV PCI Driver" | ||
#define DRIVER_NAME "flexcop-pci" | ||
#define DRIVER_AUTHOR "Patrick Boettcher <[email protected]>" | ||
|
||
struct flexcop_pci { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.