Skip to content
Snippets Groups Projects
Commit 340e8e0b authored by Michael Niedermayer's avatar Michael Niedermayer
Browse files

dnxhdenc: fix pointer type warning

parent b0545800
No related branches found
No related tags found
No related merge requests found
......@@ -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++) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment