diff options
author | Rosen Penev <rosenp@gmail.com> | 2020-04-11 18:54:33 -0700 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2020-04-12 16:36:47 +0200 |
commit | 4fa4ab97f9e65217ba9497f3ed541cd04169d2cd (patch) | |
tree | 65219e5c7d051feda1cb4f38ab0eaff00b50eb8d | |
parent | f1894c206eec463832eef851a5388949a68a050f (diff) | |
download | ffmpeg-4fa4ab97f9e65217ba9497f3ed541cd04169d2cd.tar.gz |
avcodec/mips: fix get_cabac_inline_mips function name
On other platforms, the functions are named get_cabac_inline_xxx but not
this one. There's also a define.
Signed-off-by: Rosen Penev <rosenp@gmail.com>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-rw-r--r-- | libavcodec/mips/cabac.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/mips/cabac.h b/libavcodec/mips/cabac.h index 2a05e5ab3c..03b5010edc 100644 --- a/libavcodec/mips/cabac.h +++ b/libavcodec/mips/cabac.h @@ -29,7 +29,7 @@ #include "config.h" #define get_cabac_inline get_cabac_inline_mips -static av_always_inline int get_cabac_inline(CABACContext *c, +static av_always_inline int get_cabac_inline_mips(CABACContext *c, uint8_t * const state){ mips_reg tmp0, tmp1, tmp2, bit; |