[FFmpeg-cvslog] avcodec/av1dec: Don't rely on AV_PIX_FMT_NONE == -1

Andreas Rheinhardt git at videolan.org
Wed Sep 13 23:20:10 EEST 2023


ffmpeg | branch: master | Andreas Rheinhardt <andreas.rheinhardt at outlook.com> | Sun Sep 10 13:36:19 2023 +0200| [0058f6013f5286d5e1b7403dfce0d97069cd8f91] | committer: Andreas Rheinhardt

avcodec/av1dec: Don't rely on AV_PIX_FMT_NONE == -1

Since fb548fba04193a418f118d21b261ba05db4f480b,
this return -1 is in a function returning enum AVPixelFormat
whose caller checks for AV_PIX_FMT_NONE for failure.

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt at outlook.com>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=0058f6013f5286d5e1b7403dfce0d97069cd8f91
---

 libavcodec/av1dec.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavcodec/av1dec.c b/libavcodec/av1dec.c
index 8f6c4f732e..c523c457ec 100644
--- a/libavcodec/av1dec.c
+++ b/libavcodec/av1dec.c
@@ -453,7 +453,7 @@ static enum AVPixelFormat get_sw_pixel_format(void *logctx,
     else {
         av_log(logctx, AV_LOG_ERROR,
                "Unknown AV1 profile %d.\n", seq->seq_profile);
-        return -1;
+        return AV_PIX_FMT_NONE;
     }
 
     if (!seq->color_config.mono_chrome) {



More information about the ffmpeg-cvslog mailing list