Update FFmpeg code to n3.2-65-gee56777

This commit is contained in:
trav90 2018-02-04 13:19:22 -06:00 • committed by Roy Tam
commit 384e1e2734
66 changed files with 2760 additions and 806 deletions

View file

@ -28,11 +28,12 @@
#define AVCODEC_H264DSP_H
#include <stdint.h>
#include <stddef.h>
typedef void (*h264_weight_func)(uint8_t *block, int stride, int height,
typedef void (*h264_weight_func)(uint8_t *block, ptrdiff_t stride, int height,
int log2_denom, int weight, int offset);
typedef void (*h264_biweight_func)(uint8_t *dst, uint8_t *src,
int stride, int height, int log2_denom,
ptrdiff_t stride, int height, int log2_denom,
int weightd, int weights, int offset);
/**