diff options
author | Clément Bœsch <u@pkh.me> | 2017-03-25 13:19:52 +0100 |
---|---|---|
committer | Clément Bœsch <u@pkh.me> | 2017-03-27 21:38:21 +0200 |
commit | 37814a21cb7dfbaca56b518b09eb0f85a0fe70fb (patch) | |
tree | 638e7e463cc6162e7e77d675f3dbf51dcf2da08e /libavcodec/vp9block.c | |
parent | 875f6955769bcb7caf083c1796ed6f3b2108c49e (diff) | |
download | ffmpeg-37814a21cb7dfbaca56b518b09eb0f85a0fe70fb.tar.gz |
lavc/vp9: consistent use of typedef instead of struct
Diffstat (limited to 'libavcodec/vp9block.c')
-rw-r--r-- | libavcodec/vp9block.c | 4 |
1 files changed, 2 insertions, 2 deletions
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; |