]> git.sesse.net Git - ffmpeg/blobdiff - libavutil/avassert.h
http: export ICY content type
[ffmpeg] / libavutil / avassert.h
index e100d0bfdd2f1a2b146b74e78c06c950f7620b2b..41f5e0eea7b8d9bfe46d3ceac986e64b11a0283b 100644 (file)
@@ -36,7 +36,7 @@
  */
 #define av_assert0(cond) do {                                           \
     if (!(cond)) {                                                      \
-        av_log(NULL, AV_LOG_FATAL, "Assertion %s failed at %s:%d\n",    \
+        av_log(NULL, AV_LOG_PANIC, "Assertion %s failed at %s:%d\n",    \
                AV_STRINGIFY(cond), __FILE__, __LINE__);                 \
         abort();                                                        \
     }                                                                   \