qcam: dng_writer: Remove colon from \todo
Todo statements should not end with a colon, remove it. Signed-off-by: Niklas Söderlund <niklas.soderlund@ragnatech.se> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
This commit is contained in:
parent
2223579dfe
commit
f5698ed541
1 changed files with 1 additions and 1 deletions
|
@ -54,7 +54,7 @@ void packScanlineSBGGR12P(void *output, const void *input, unsigned int width)
|
||||||
const uint8_t *in = static_cast<const uint8_t *>(input);
|
const uint8_t *in = static_cast<const uint8_t *>(input);
|
||||||
uint8_t *out = static_cast<uint8_t *>(output);
|
uint8_t *out = static_cast<uint8_t *>(output);
|
||||||
|
|
||||||
/* \todo: Can this be made more efficient? */
|
/* \todo Can this be made more efficient? */
|
||||||
for (unsigned int i = 0; i < width; i += 2) {
|
for (unsigned int i = 0; i < width; i += 2) {
|
||||||
*out++ = in[0];
|
*out++ = in[0];
|
||||||
*out++ = (in[2] & 0x0f) << 4 | in[1] >> 4;
|
*out++ = (in[2] & 0x0f) << 4 | in[1] >> 4;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue