summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2022-05-03 22:22:00 +0200
committerMichael Niedermayer <michael@niedermayer.cc>2022-05-06 15:57:45 +0200
commitf3b7ba21ba49b32b4476a8c7c5a9bcdad15e3943 (patch)
tree15d1de243476ad2e764c068e60d8e9adc15020d1
parente06b1ba7d79ac15f23fb08947949dcfec8bfb408 (diff)
avcodec/libxavs2: Improve r redundancy in occured
Reviewed-by: "mypopy@gmail.com" <mypopy@gmail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-rw-r--r--libavcodec/libxavs2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/libxavs2.c b/libavcodec/libxavs2.c
index f77078e3fb..bf34b7acbb 100644
--- a/libavcodec/libxavs2.c
+++ b/libavcodec/libxavs2.c
@@ -208,7 +208,7 @@ static int xavs2_encode_frame(AVCodecContext *avctx, AVPacket *pkt,
ret = cae->api->encoder_encode(cae->encoder, &pic, &cae->packet);
if (ret) {
- av_log(avctx, AV_LOG_ERROR, "Encoding error occured.\n");
+ av_log(avctx, AV_LOG_ERROR, "Encoding error occurred.\n");
return AVERROR_EXTERNAL;
}