]> git.sesse.net Git - ffmpeg/commitdiff
lavc/movtextenc: return more meaningful error codes
authorJohn Stebbins <jstebbins@jetheaddev.com>
Fri, 10 Apr 2020 18:30:10 +0000 (12:30 -0600)
committerPhilip Langdale <philipl@overt.org>
Fri, 10 Apr 2020 22:58:04 +0000 (15:58 -0700)
Signed-off-by: Philip Langdale <philipl@overt.org>
libavcodec/movtextenc.c

index d8dbc546aaa26ece86b6630575b1379396cc31ef..b2368b641bb7751bc3506ca22182ca6094881544 100644 (file)
@@ -693,7 +693,7 @@ static int mov_text_encode_frame(AVCodecContext *avctx, unsigned char *buf,
 
         if (sub->rects[i]->type != SUBTITLE_ASS) {
             av_log(avctx, AV_LOG_ERROR, "Only SUBTITLE_ASS type supported.\n");
-            return AVERROR(ENOSYS);
+            return AVERROR(EINVAL);
         }
 
 #if FF_API_ASS_TIMING
@@ -736,7 +736,7 @@ static int mov_text_encode_frame(AVCodecContext *avctx, unsigned char *buf,
 
     if (s->buffer.len > bufsize - 3) {
         av_log(avctx, AV_LOG_ERROR, "Buffer too small for ASS event.\n");
-        length = AVERROR(EINVAL);
+        length = AVERROR_BUFFER_TOO_SMALL;
         goto exit;
     }