diff options
author | Limin Wang <lance.lmwang@gmail.com> | 2020-08-01 12:34:29 +0800 |
---|---|---|
committer | Limin Wang <lance.lmwang@gmail.com> | 2020-08-12 08:12:59 +0800 |
commit | ed39d28ce775dffd4ea75544ee09186d4f1a142a (patch) | |
tree | 6d85b84c9aa4dce40042802fbe556a5859ce33b3 | |
parent | 7ad4928580dc570af156094160dc4c640d31a288 (diff) | |
download | ffmpeg-ed39d28ce775dffd4ea75544ee09186d4f1a142a.tar.gz |
avcodec/libsvtav1: fix copy and paste error
Reviewed-by: Mark Thompson <sw@jkqxz.net>
Signed-off-by: Limin Wang <lance.lmwang@gmail.com>
-rw-r--r-- | libavcodec/libsvtav1.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/libsvtav1.c b/libavcodec/libsvtav1.c index 40942c6f6a..d34c6b3288 100644 --- a/libavcodec/libsvtav1.c +++ b/libavcodec/libsvtav1.c @@ -85,7 +85,7 @@ static const struct { { EB_ErrorBadParameter, AVERROR(EINVAL), "bad parameter" }, { EB_ErrorDestroyThreadFailed, AVERROR_EXTERNAL, "failed to destroy thread" }, { EB_ErrorSemaphoreUnresponsive, AVERROR_EXTERNAL, "semaphore unresponsive" }, - { EB_ErrorDestroySemaphoreFailed, AVERROR_EXTERNAL, "semaphore unresponsive" }, + { EB_ErrorDestroySemaphoreFailed, AVERROR_EXTERNAL, "failed to destroy semaphore"}, { EB_ErrorCreateMutexFailed, AVERROR_EXTERNAL, "failed to create mutex" }, { EB_ErrorMutexUnresponsive, AVERROR_EXTERNAL, "mutex unresponsive" }, { EB_ErrorDestroyMutexFailed, AVERROR_EXTERNAL, "failed to destroy mutex" }, |