]> git.sesse.net Git - ffmpeg/blobdiff - libavutil/error.c
x86: place some inline asm under #if HAVE_INLINE_ASM
[ffmpeg] / libavutil / error.c
index a330e9f99c1f63c9a58c2bc3c8f57bc2671a72de..21b68762d2e4d613d5c0a60be55fe1954f7feb06 100644 (file)
@@ -39,6 +39,7 @@ int av_strerror(int errnum, char *errbuf, size_t errbuf_size)
     case AVERROR_PROTOCOL_NOT_FOUND:errstr = "Protocol not found"                           ; break;
     case AVERROR_STREAM_NOT_FOUND:  errstr = "Stream not found"                             ; break;
     case AVERROR_BUG:               errstr = "Bug detected, please report the issue"        ; break;
+    case AVERROR_UNKNOWN:           errstr = "Unknown error occurred"                       ; break;
     }
 
     if (errstr) {