mirror of
https://github.com/nyanmisaka/ffmpeg-rockchip.git
synced 2026-01-23 23:21:06 +01:00
amrnbdec: silence a warning about unsigned cant be negative
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
bdfffa66a0
commit
52fa5cea03
1 changed files with 1 additions and 1 deletions
|
|
@ -492,7 +492,7 @@ static void decode_8_pulses_31bits(const int16_t *fixed_index,
|
|||
static void decode_fixed_sparse(AMRFixed *fixed_sparse, const uint16_t *pulses,
|
||||
const enum Mode mode, const int subframe)
|
||||
{
|
||||
av_assert1(MODE_4k75 <= mode && mode <= MODE_12k2);
|
||||
av_assert1(MODE_4k75 <= (signed)mode && mode <= MODE_12k2);
|
||||
|
||||
if (mode == MODE_12k2) {
|
||||
ff_decode_10_pulses_35bits(pulses, fixed_sparse, gray_decode, 5, 3);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue