summaryrefslogtreecommitdiff
path: root/libavcodec
diff options
context:
space:
mode:
authorTristan Matthews <tmatth@videolan.org>2022-11-28 10:38:58 -0500
committerRonald S. Bultje <rsbultje@gmail.com>2022-12-13 08:39:51 -0500
commitfb5e9dbc90d8647a4c4974fb69d4ce1b13ef9ba5 (patch)
treedcd2129146738602d746c654b566373245d66404 /libavcodec
parent5a46647f00e745eeb7aa26bb8ebd73da8d142cf0 (diff)
av1dec: fix typo in logged error
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/av1dec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/av1dec.c b/libavcodec/av1dec.c
index 0c24eac842..93b8bcee4a 100644
--- a/libavcodec/av1dec.c
+++ b/libavcodec/av1dec.c
@@ -567,7 +567,7 @@ static int get_pixel_format(AVCodecContext *avctx)
* implemented in the future, need remove this check.
*/
if (!avctx->hwaccel) {
- av_log(avctx, AV_LOG_ERROR, "Your platform doesn't suppport"
+ av_log(avctx, AV_LOG_ERROR, "Your platform doesn't support"
" hardware accelerated AV1 decoding.\n");
return AVERROR(ENOSYS);
}