Commit 6354957a authored by Diego Biurrun's avatar Diego Biurrun

dnxhdenc: Have function pointer prototype match implementation

libavcodec/dnxhdenc.c(326) : warning C4028: formal parameter 1 different from declaration
libavcodec/dnxhdenc.c(329) : warning C4028: formal parameter 1 different from declaration
parent c778eb15
...@@ -26,6 +26,8 @@ ...@@ -26,6 +26,8 @@
#include <stdint.h> #include <stdint.h>
#include "config.h"
#include "mpegvideo.h" #include "mpegvideo.h"
#include "dnxhddata.h" #include "dnxhddata.h"
...@@ -93,8 +95,8 @@ typedef struct DNXHDEncContext { ...@@ -93,8 +95,8 @@ typedef struct DNXHDEncContext {
RCCMPEntry *mb_cmp; RCCMPEntry *mb_cmp;
RCEntry (*mb_rc)[8160]; RCEntry (*mb_rc)[8160];
void (*get_pixels_8x4_sym)(int16_t * /* align 16 */, void (*get_pixels_8x4_sym)(int16_t *restrict /* align 16 */ block,
const uint8_t *, ptrdiff_t); const uint8_t *pixels, ptrdiff_t line_size);
} DNXHDEncContext; } DNXHDEncContext;
void ff_dnxhdenc_init_x86(DNXHDEncContext *ctx); void ff_dnxhdenc_init_x86(DNXHDEncContext *ctx);
......
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