Commit 77248d12 authored by Clément Bœsch's avatar Clément Bœsch

Merge commit '6354957a'

* commit '6354957a':
  dnxhdenc: Have function pointer prototype match implementation
Merged-by: 's avatarClément Bœsch <cboesch@gopro.com>
parents 7b890157 6354957a
...@@ -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"
...@@ -99,8 +101,8 @@ typedef struct DNXHDEncContext { ...@@ -99,8 +101,8 @@ typedef struct DNXHDEncContext {
RCCMPEntry *mb_cmp_tmp; RCCMPEntry *mb_cmp_tmp;
RCEntry *mb_rc; RCEntry *mb_rc;
void (*get_pixels_8x4_sym)(int16_t * /* align 16 */, void (*get_pixels_8x4_sym)(int16_t *av_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