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
This commit is contained in:
Diego Biurrun 2016-11-01 00:30:33 +01:00
parent c778eb15b8
commit 6354957a95
1 changed files with 4 additions and 2 deletions

View File

@ -26,6 +26,8 @@
#include <stdint.h>
#include "config.h"
#include "mpegvideo.h"
#include "dnxhddata.h"
@ -93,8 +95,8 @@ typedef struct DNXHDEncContext {
RCCMPEntry *mb_cmp;
RCEntry (*mb_rc)[8160];
void (*get_pixels_8x4_sym)(int16_t * /* align 16 */,
const uint8_t *, ptrdiff_t);
void (*get_pixels_8x4_sym)(int16_t *restrict /* align 16 */ block,
const uint8_t *pixels, ptrdiff_t line_size);
} DNXHDEncContext;
void ff_dnxhdenc_init_x86(DNXHDEncContext *ctx);