mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-02-04 13:53:26 +00:00
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:
parent
c778eb15b8
commit
6354957a95
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user