diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-10-01 05:07:59 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-10-02 18:35:35 +0200 |
commit | 8ae0ef532717278492f6d80fc26fad1030ee25f1 (patch) | |
tree | dd8b2bb38ab867412927471c6774918e8408ed2e /libavcodec/vc1_pred.h | |
parent | 98f52efbfa0bf67e75a1878b6fcc5350c3e14c95 (diff) | |
download | ffmpeg-8ae0ef532717278492f6d80fc26fad1030ee25f1.tar.gz |
avcodec/vc1_pred: Remove unused function parameter
Reviewed-by: Michael Niedermayer <michael@niedermayer.cc>
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec/vc1_pred.h')
-rw-r--r-- | libavcodec/vc1_pred.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libavcodec/vc1_pred.h b/libavcodec/vc1_pred.h index 4d47f86696..ff894e0417 100644 --- a/libavcodec/vc1_pred.h +++ b/libavcodec/vc1_pred.h @@ -30,8 +30,7 @@ void ff_vc1_pred_mv(VC1Context *v, int n, int dmv_x, int dmv_y, int mv1, int r_x, int r_y, uint8_t* is_intra, int pred_flag, int dir); void ff_vc1_pred_mv_intfr(VC1Context *v, int n, int dmv_x, int dmv_y, - int mvn, int r_x, int r_y, uint8_t* is_intra, - int dir); + int mvn, int r_x, int r_y, int dir); void ff_vc1_pred_b_mv(VC1Context *v, int dmv_x[2], int dmv_y[2], int direct, int mvtype); void ff_vc1_pred_b_mv_intfi(VC1Context *v, int n, int *dmv_x, int *dmv_y, |