Browse Source

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>
tags/n4.3
Rosen Penev Michael Niedermayer 5 years ago
parent
commit
4fa4ab97f9
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/mips/cabac.h

+ 1
- 1
libavcodec/mips/cabac.h 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;



Loading…
Cancel
Save