mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-10-19 09:53:18 +00:00
avcodec/4xm: Use av_unreachable() instead of av_assert0(0)
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
parent
5653e0b1fa
commit
328ba54efa
1 changed files with 2 additions and 1 deletions
|
@ -337,7 +337,8 @@ static inline void mcdc(uint16_t *dst, const uint16_t *src, int log2w,
|
|||
}
|
||||
break;
|
||||
default:
|
||||
av_assert0(0);
|
||||
av_unreachable("log2w starts at 3 and gets only decremented during "
|
||||
"recursive calls to decode_p_block");
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue