summaryrefslogtreecommitdiff
path: root/libavcodec/vc1_pred.c
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2021-10-01 05:07:59 +0200
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2021-10-02 18:35:35 +0200
commit8ae0ef532717278492f6d80fc26fad1030ee25f1 (patch)
treedd8b2bb38ab867412927471c6774918e8408ed2e /libavcodec/vc1_pred.c
parent98f52efbfa0bf67e75a1878b6fcc5350c3e14c95 (diff)
downloadffmpeg-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.c')
-rw-r--r--libavcodec/vc1_pred.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/vc1_pred.c b/libavcodec/vc1_pred.c
index f70956e739..ad2caf6db2 100644
--- a/libavcodec/vc1_pred.c
+++ b/libavcodec/vc1_pred.c
@@ -468,7 +468,7 @@ void ff_vc1_pred_mv(VC1Context *v, int n, int dmv_x, int dmv_y,
/** Predict and set motion vector for interlaced frame picture MBs
*/
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)
{
MpegEncContext *s = &v->s;
int xy, wrap, off = 0;