Commit 7b890157 authored by Clément Bœsch's avatar Clément Bœsch

Merge commit 'c778eb15'

* commit 'c778eb15':
  pixblockdsp: Have function pointer prototype match implementation
Merged-by: 's avatarClément Bœsch <cboesch@gopro.com>
parents c223784e c778eb15
......@@ -21,13 +21,15 @@
#include <stdint.h>
#include "config.h"
#include "avcodec.h"
typedef struct PixblockDSPContext {
void (*get_pixels)(int16_t *block /* align 16 */,
void (*get_pixels)(int16_t *av_restrict block /* align 16 */,
const uint8_t *pixels /* align 8 */,
ptrdiff_t stride);
void (*diff_pixels)(int16_t *block /* align 16 */,
void (*diff_pixels)(int16_t *av_restrict block /* align 16 */,
const uint8_t *s1 /* align 8 */,
const uint8_t *s2 /* align 8 */,
ptrdiff_t stride);
......
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