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>
This commit is contained in:
Rosen Penev 2020-04-11 18:54:33 -07:00 committed by Michael Niedermayer
parent f1894c206e
commit 4fa4ab97f9
1 changed files with 1 additions and 1 deletions

View File

@ -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;