Commit 340e8e0b authored by Michael Niedermayer's avatar Michael Niedermayer

dnxhdenc: fix pointer type warning

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent b0545800
......@@ -71,7 +71,7 @@ static void dnxhd_8bit_get_pixels_8x4_sym(DCTELEM *restrict block, const uint8_t
static av_always_inline void dnxhd_10bit_get_pixels_8x4_sym(DCTELEM *restrict block, const uint8_t *pixels, int line_size)
{
int i;
const uint16_t* pixels16 = pixels;
const uint16_t* pixels16 = (const uint16_t*)pixels;
line_size >>= 1;
for (i = 0; i < 4; i++) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment