[FFmpeg-cvslog] avcodec/av1dec: bit_depth cannot be another values than 8,10,12
Michael Niedermayer
git at videolan.org
Wed May 22 23:15:22 EEST 2024
ffmpeg | branch: release/7.0 | Michael Niedermayer <michael at niedermayer.cc> | Wed May 1 13:10:57 2024 +0200| [c5671e9de91cb51e4a8d730d030fc3d7aaab1ad0] | committer: Michael Niedermayer
avcodec/av1dec: bit_depth cannot be another values than 8,10,12
Fixes: CID1544265 Logically dead code
Sponsored-by: Sovereign Tech Fund
Reviewed-by: James Almer <jamrial at gmail.com>
Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
(cherry picked from commit fd7d24fa3f39fc1013fb0d06b42c98b8ff1f8942)
Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=c5671e9de91cb51e4a8d730d030fc3d7aaab1ad0
---
libavcodec/av1dec.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/libavcodec/av1dec.c b/libavcodec/av1dec.c
index 11c852786f..d13c2c4a6b 100644
--- a/libavcodec/av1dec.c
+++ b/libavcodec/av1dec.c
@@ -492,7 +492,7 @@ static enum AVPixelFormat get_sw_pixel_format(void *logctx,
else if (bit_depth == 12)
pix_fmt = AV_PIX_FMT_YUV444P12;
else
- av_log(logctx, AV_LOG_WARNING, "Unknown AV1 pixel format.\n");
+ av_assert0(0);
} else if (seq->color_config.subsampling_x == 1 &&
seq->color_config.subsampling_y == 0) {
if (bit_depth == 8)
@@ -502,7 +502,7 @@ static enum AVPixelFormat get_sw_pixel_format(void *logctx,
else if (bit_depth == 12)
pix_fmt = AV_PIX_FMT_YUV422P12;
else
- av_log(logctx, AV_LOG_WARNING, "Unknown AV1 pixel format.\n");
+ av_assert0(0);
} else if (seq->color_config.subsampling_x == 1 &&
seq->color_config.subsampling_y == 1) {
if (bit_depth == 8)
@@ -512,7 +512,7 @@ static enum AVPixelFormat get_sw_pixel_format(void *logctx,
else if (bit_depth == 12)
pix_fmt = AV_PIX_FMT_YUV420P12;
else
- av_log(logctx, AV_LOG_WARNING, "Unknown AV1 pixel format.\n");
+ av_assert0(0);
}
} else {
if (bit_depth == 8)
@@ -522,7 +522,7 @@ static enum AVPixelFormat get_sw_pixel_format(void *logctx,
else if (bit_depth == 12)
pix_fmt = AV_PIX_FMT_GRAY12;
else
- av_log(logctx, AV_LOG_WARNING, "Unknown AV1 pixel format.\n");
+ av_assert0(0);
}
return pix_fmt;
More information about the ffmpeg-cvslog
mailing list