From 37814a21cb7dfbaca56b518b09eb0f85a0fe70fb Mon Sep 17 00:00:00 2001 From: Clément Bœsch Date: Sat, 25 Mar 2017 13:19:52 +0100 Subject: lavc/vp9: consistent use of typedef instead of struct --- libavcodec/vp9block.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libavcodec/vp9block.c') diff --git a/libavcodec/vp9block.c b/libavcodec/vp9block.c index 70c7015799..e5e117134d 100644 --- a/libavcodec/vp9block.c +++ b/libavcodec/vp9block.c @@ -785,7 +785,7 @@ static void decode_mode(AVCodecContext *avctx) // FIXME kinda ugly for (y = 0; y < h4; y++) { int x, o = (row + y) * s->sb_cols * 8 + col; - struct VP9mvrefPair *mv = &s->s.frames[CUR_FRAME].mv[o]; + VP9mvrefPair *mv = &s->s.frames[CUR_FRAME].mv[o]; if (b->intra) { for (x = 0; x < w4; x++) { @@ -1883,7 +1883,7 @@ static av_always_inline void mask_edges(uint8_t (*mask)[8][4], int ss_h, int ss_ } void ff_vp9_decode_block(AVCodecContext *avctx, int row, int col, - struct VP9Filter *lflvl, ptrdiff_t yoff, ptrdiff_t uvoff, + VP9Filter *lflvl, ptrdiff_t yoff, ptrdiff_t uvoff, enum BlockLevel bl, enum BlockPartition bp) { VP9Context *s = avctx->priv_data; -- cgit v1.2.3