1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-04 22:03:09 +02: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:
Andreas Rheinhardt
2025-05-06 17:56:43 +02:00
parent 5653e0b1fa
commit 328ba54efa

View File

@ -337,7 +337,8 @@ static inline void mcdc(uint16_t *dst, const uint16_t *src, int log2w,
} }
break; break;
default: default:
av_assert0(0); av_unreachable("log2w starts at 3 and gets only decremented during "
"recursive calls to decode_p_block");
} }
} }