You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
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:
committed by
Michael Niedermayer
parent
f1894c206e
commit
4fa4ab97f9
@@ -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;
|
||||
|
||||
|
Reference in New Issue
Block a user