mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-11 17:55:21 +00:00
avdevice/decklink_dec: fix extracting luma
Signed-off-by: Marton Balint <cus@passwd.hu>
This commit is contained in:
parent
62bdec806e
commit
7d141e2cac
@ -138,7 +138,7 @@ static int check_vanc_parity_checksum(uint16_t *buf, int len, uint16_t checksum)
|
||||
static void extract_luma_from_v210(uint16_t *dst, const uint8_t *src, int width)
|
||||
{
|
||||
int i;
|
||||
for (i = 0; i < width / 3; i += 3) {
|
||||
for (i = 0; i < width / 3; i++) {
|
||||
*dst++ = (src[1] >> 2) + ((src[2] & 15) << 6);
|
||||
*dst++ = src[4] + ((src[5] & 3) << 8);
|
||||
*dst++ = (src[6] >> 4) + ((src[7] & 63) << 4);
|
||||
|
Loading…
Reference in New Issue
Block a user