avutil: Add AVERROR_EXPERIMENTAL

Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
This commit is contained in:
Nathan Caldwell
2012-10-18 22:59:04 -06:00
committed by Luca Barbato
parent a4aa20fbdb
commit a893655bda
4 changed files with 6 additions and 1 deletions

View File

@@ -41,6 +41,7 @@ int av_strerror(int errnum, char *errbuf, size_t errbuf_size)
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;
case AVERROR_EXPERIMENTAL: errstr = "Experimental feature" ; break;
}
if (errstr) {