]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/alsdec.c
h264: Fix parameters to ff_er_add_slice() call
[ffmpeg] / libavcodec / alsdec.c
index 1c3f0cbdb5a5d6e399b1dae073a881e42c232e46..ba9f3bba2e6b75fc139159817b2a1802c72d9917 100644 (file)
@@ -427,9 +427,9 @@ static int check_specific_config(ALSDecContext *ctx)
         }                                               \
     }
 
-    MISSING_ERR(sconf->floating,             "Floating point decoding",     -1);
-    MISSING_ERR(sconf->rlslms,               "Adaptive RLS-LMS prediction", -1);
-    MISSING_ERR(sconf->chan_sort,            "Channel sorting",              0);
+    MISSING_ERR(sconf->floating,  "Floating point decoding",     AVERROR_PATCHWELCOME);
+    MISSING_ERR(sconf->rlslms,    "Adaptive RLS-LMS prediction", AVERROR_PATCHWELCOME);
+    MISSING_ERR(sconf->chan_sort, "Channel sorting",             0);
 
     return error;
 }